filter:category.topics.get

This commit is contained in:
psychobunny
2014-11-14 16:29:59 -05:00
parent c988f54243
commit abe887f557

View File

@@ -36,9 +36,11 @@ module.exports = function(Categories) {
topics[i].index = indices[topics[i].tid];
}
next(null, {
topics: topics,
nextStart: data.stop + 1
plugins.fireHook('filter:category.topics.get', topics, function(err, topics) {
next(null, {
topics: topics,
nextStart: data.stop + 1
});
});
}
], callback);