feat: #7743, meta/sounds

This commit is contained in:
Barış Soner Uşaklı
2019-07-22 12:19:29 -04:00
parent 7f72181ec8
commit a15c50bf62
2 changed files with 86 additions and 111 deletions

View File

@@ -108,7 +108,9 @@ function initializeNodeBB(callback) {
var middleware = require('./middleware');
async.waterfall([
meta.themes.setupPaths,
function (next) {
meta.themes.setupPaths(next);
},
function (next) {
plugins.init(app, middleware, next);
},
@@ -122,7 +124,9 @@ function initializeNodeBB(callback) {
function (next) {
routes(app, middleware, next);
},
meta.sounds.addUploads,
function (next) {
meta.sounds.addUploads(next);
},
function (next) {
meta.blacklist.load(next);
},