feat: added filter:tags.getAll plugin hook

v1.18.x
Julian Lam 6 years ago
parent 102d4b0247
commit 66aa443b7a

@ -129,7 +129,10 @@ module.exports = function (Topics) {
Topics.getTags = async function (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) {

Loading…
Cancel
Save