mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-03 04:25:55 +01:00
closes #1445
This commit is contained in:
@@ -11,6 +11,7 @@ var fs = require('fs'),
|
||||
user = require('./../user'),
|
||||
posts = require('./../posts'),
|
||||
topics = require('./../topics'),
|
||||
messaging = require('../messaging'),
|
||||
postTools = require('../postTools'),
|
||||
utils = require('./../../public/src/utils'),
|
||||
meta = require('./../meta'),
|
||||
@@ -448,7 +449,7 @@ accountsController.uploadPicture = function (req, res, next) {
|
||||
});
|
||||
}
|
||||
|
||||
if(err) {
|
||||
if (err) {
|
||||
fs.unlink(req.files.userPhoto.path);
|
||||
return res.json({error:err.message});
|
||||
}
|
||||
@@ -487,4 +488,16 @@ accountsController.getNotifications = function(req, res, next) {
|
||||
});
|
||||
};
|
||||
|
||||
accountsController.getChats = function(req, res, next) {
|
||||
messaging.getRecentChats(req.user.uid, 0, -1, function(err, chats) {
|
||||
if (err) {
|
||||
return next(err);
|
||||
}
|
||||
|
||||
res.render('chats', {
|
||||
chats: chats
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
module.exports = accountsController;
|
||||
|
||||
Reference in New Issue
Block a user