mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 03:26:04 +01:00
add filter:manifest.build (#7821)
* add filter:manifest.build Added a hook that lets plugins modify manifest.json, as suggested in https://community.nodebb.org/post/59670 * Added error handling Thanks barisusakli * Define next * Pass data as an object * Remove multiple spaces
This commit is contained in:
committed by
Barış Soner Uşaklı
parent
602c09e1f9
commit
90bcd65a00
@@ -267,7 +267,7 @@ Controllers.robots = function (req, res) {
|
||||
}
|
||||
};
|
||||
|
||||
Controllers.manifest = function (req, res) {
|
||||
Controllers.manifest = function (req, res, next) {
|
||||
var manifest = {
|
||||
name: meta.config.title || 'NodeBB',
|
||||
start_url: nconf.get('relative_path') + '/',
|
||||
@@ -309,8 +309,12 @@ Controllers.manifest = function (req, res) {
|
||||
density: 4.0,
|
||||
});
|
||||
}
|
||||
|
||||
res.status(200).json(manifest);
|
||||
plugins.fireHook('filter:manifest.build', { req: req, res: res, manifest: manifest }, function (err, data) {
|
||||
if (err) {
|
||||
return next(err);
|
||||
}
|
||||
res.status(200).json(data.manifest);
|
||||
});
|
||||
};
|
||||
|
||||
Controllers.outgoing = function (req, res, next) {
|
||||
|
||||
Reference in New Issue
Block a user