Skip to content

Commit

Permalink
Readded documentation login to solve error with chat.
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeKnome committed May 17, 2016
1 parent 7a3c252 commit c0b882b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/router.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ var router = function(app) {
app.post("/login", mid.requiresSecure, mid.requiresLogout, controllers.Account.login);
app.get("/signup", mid.requiresSecure, mid.requiresLogout, controllers.Account.signupPage);
app.post("/signup", mid.requiresSecure, mid.requiresLogout, controllers.Account.signup);
app.get("/documentation", controllers.Account.documentationPage);
app.get("/documentation", mid.requiresLogin, controllers.Account.documentationPage);
app.get("/logout", mid.requiresLogin, controllers.Account.logout);
app.get("/game", mid.requiresLogin, controllers.Account.gamePage);
app.get("/account", mid.requiresLogin, controllers.Account.accountPage);
Expand Down

0 comments on commit c0b882b

Please sign in to comment.