removed the hook I just added: filter:category.recent, was a bit misleading.

This commit is contained in:
Julian Lam
2014-11-14 17:42:33 -05:00
parent 20ea40133b
commit 9debfd94ec

View File

@@ -26,12 +26,12 @@ module.exports = function(Categories) {
return callback(err, []);
}
plugins.fireHook('filter:categories.recent', {
uid: uid,
pids: pids
}, function(err, data) {
posts.getPostSummaryByPids(data.pids, uid, {stripTags: true}, callback);
});
async.waterfall([
async.apply(privileges.posts.filter, 'read', pids, uid),
function(pids, next) {
posts.getPostSummaryByPids(pids, uid, {stripTags: true}, next);
}
], callback);
});
});
};