Skip to content

Commit

Permalink
Fixed Error in Route
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Jun 20, 2016
1 parent 4c13783 commit 519e99c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/routes/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function mainRoutes(router, middleware, controllers) {

router.get('/login', middleware.redirectToLogin, middleware.cache(5*60), middleware.redirectToDashboardIfLoggedIn);
router.post('/login', controllers.main.loginPost);
router.get('/l2auth', middleware.checkUserHasL2Auth, middleware.cache(5*60), controllers.main.l2authget);
//router.get('/l2auth', middleware.checkUserHasL2Auth, middleware.cache(5*60), controllers.main.l2authget);
router.get('/logout', controllers.main.logout);
router.post('/forgotpass', controllers.main.forgotPass);
router.get('/resetpassword/:hash', controllers.main.resetPass);
Expand Down

0 comments on commit 519e99c

Please sign in to comment.