mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-22 00:10:25 +01:00
Add hook "filter:topic.build"
Same behavior as "filter:register.build"
This commit is contained in:
@@ -266,7 +266,14 @@ topicsController.get = function(req, res, next) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
topics.increaseViewCount(tid);
|
topics.increaseViewCount(tid);
|
||||||
res.render('topic', data);
|
|
||||||
|
plugins.fireHook('filter:topic.build', {req: req, res: res, templateData: data}, function(err, data) {
|
||||||
|
if (err && process.env === 'development') {
|
||||||
|
winston.warn(JSON.stringify(err));
|
||||||
|
return next(err);
|
||||||
|
}
|
||||||
|
res.render('topic', data.templateData);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user