mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 11:35:55 +01:00
added app.load action hook
This commit is contained in:
@@ -35,7 +35,7 @@ var path = require('path'),
|
||||
var templates = null,
|
||||
clientScripts;
|
||||
|
||||
|
||||
|
||||
plugins.ready(function() {
|
||||
// Minify client-side libraries
|
||||
meta.js.get(function (err, scripts) {
|
||||
@@ -322,6 +322,7 @@ var path = require('path'),
|
||||
});
|
||||
});
|
||||
|
||||
plugins.fireHook('action:app.load');
|
||||
|
||||
translator.translate(templates.logout.toString(), function(parsedTemplate) {
|
||||
templates.logout = parsedTemplate;
|
||||
@@ -342,7 +343,6 @@ var path = require('path'),
|
||||
userRoute.createRoutes(app);
|
||||
apiRoute.createRoutes(app);
|
||||
|
||||
|
||||
// Basic Routes (entirely client-side parsed, goal is to move the rest of the crap in this file into this one section)
|
||||
(function () {
|
||||
var routes = ['login', 'register', 'account', 'recent', '403', '404'],
|
||||
|
||||
Reference in New Issue
Block a user