From 5a5c3c8c60ebd58f29475de6c8f0bb7dc6338088 Mon Sep 17 00:00:00 2001 From: Julian Lam Date: Mon, 25 Nov 2013 16:28:07 -0500 Subject: [PATCH] added app.load action hook --- src/webserver.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/webserver.js b/src/webserver.js index c9e790b010..8b223e8f8d 100644 --- a/src/webserver.js +++ b/src/webserver.js @@ -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'],