diff options
Diffstat (limited to '')
-rw-r--r-- | router.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -50,7 +50,7 @@ module.exports = function(app, passport, auth) { */ - app.get('/dashboard', system.dashboard); + app.get('/dashboard', auth.requiresLogin, system.dashboard); app.get('/project', auth.requiresLogin, system.project); |