feat: added filter:tags.getAll plugin hook

This commit is contained in:
Julian Lam
2019-07-24 12:06:42 -04:00
parent 102d4b0247
commit 66aa443b7a

View File

@@ -129,7 +129,10 @@ module.exports = function (Topics) {
Topics.getTags = async function (start, stop) { Topics.getTags = async function (start, stop) {
const tags = await db.getSortedSetRevRangeWithScores('tags:topic:count', start, stop); const tags = await db.getSortedSetRevRangeWithScores('tags:topic:count', start, stop);
return await Topics.getTagData(tags); const payload = await plugins.fireHook('filter:tags.getAll', {
tags: tags,
});
return await Topics.getTagData(payload.tags);
}; };
Topics.getTagData = async function (tags) { Topics.getTagData = async function (tags) {