From e4600decd015222e65b34f53fee87980fbd2bd16 Mon Sep 17 00:00:00 2001 From: Stefan Zermatten Date: Mon, 11 May 2015 16:51:17 +0200 Subject: [PATCH] Added more things to except list for need sign in --- rpg-docs/Routes/Routes.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/rpg-docs/Routes/Routes.js b/rpg-docs/Routes/Routes.js index e2552e6c..cc0c66f7 100644 --- a/rpg-docs/Routes/Routes.js +++ b/rpg-docs/Routes/Routes.js @@ -4,7 +4,18 @@ Router.configure({ }); Router.plugin("ensureSignedIn", { - except: ["home", "atSignIn", "atSignUp", "atForgotPassword", "notFound"] + except: [ + "home", + "atSignIn", + "atSignUp", + "atForgotPassword", + "atResetPwd", + "atEnrollAccount", + "atVerifyEmail", + "atresendVerificationEmail", + "loginButtons", + "notFound", + ] }); Router.plugin("dataNotFound", {notFoundTemplate: "notFound"});