mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-08 15:05:46 +01:00
closes #3179
This commit is contained in:
@@ -18,6 +18,21 @@ SocketCategories.get = function(socket, data, callback) {
|
||||
categories.getCategoriesByPrivilege(socket.uid, 'find', callback);
|
||||
};
|
||||
|
||||
SocketCategories.getWatchedCategories = function(socket, data, callback) {
|
||||
async.parallel({
|
||||
categories: async.apply(categories.getCategoriesByPrivilege, socket.uid, 'find')
|
||||
ignoredCids: async.apply(user.getIgnoredCategories, socket.uid)
|
||||
}, function(err, results) {
|
||||
if (err) {
|
||||
return callback(err);
|
||||
}
|
||||
var watchedCategories = results.categories.filter(function(category) {
|
||||
return category && results.ignoredCids.indexOf(category.cid.toString()) === -1;
|
||||
});
|
||||
callback(null, watchedCategories);
|
||||
});
|
||||
};
|
||||
|
||||
SocketCategories.loadMore = function(socket, data, callback) {
|
||||
if (!data) {
|
||||
return callback(new Error('[[error:invalid-data]]'));
|
||||
|
||||
Reference in New Issue
Block a user