From fb1095fc2869983be68b24c045dafdbe1b1f2fac Mon Sep 17 00:00:00 2001 From: barisusakli Date: Fri, 31 Oct 2014 01:50:20 -0400 Subject: [PATCH] added allowed true to /chats --- src/controllers/accounts.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/controllers/accounts.js b/src/controllers/accounts.js index 735aedb55c..35e86d7f81 100644 --- a/src/controllers/accounts.js +++ b/src/controllers/accounts.js @@ -544,7 +544,8 @@ accountsController.getChats = function(req, res, next) { return res.render('chats', { chats: results.recentChats.users, nextStart: results.recentChats.nextStart, - contacts: results.contacts + contacts: results.contacts, + allowed: true }); }