From f3ec4f487eb96422081c60a9f00b902503bc47de Mon Sep 17 00:00:00 2001 From: Dennis Eriksen Date: Fri, 24 May 2013 16:49:07 +0200 Subject: no longer redirect to /test on failurewq --- routes.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'routes.js') diff --git a/routes.js b/routes.js index e535206..1062f08 100644 --- a/routes.js +++ b/routes.js @@ -26,7 +26,7 @@ module.exports = function(app, passport, auth) { app.get('/login', users.login); - app.post('/login', passport.authenticate('local', { failureRedirect: '/test' }), users.signin); + app.post('/login', passport.authenticate('local', { failureRedirect: '/' }), users.signin); app.get('/signup', users.signup); @@ -34,11 +34,11 @@ module.exports = function(app, passport, auth) { app.post('/test', users.signin); - app.get('/auth/facebook', passport.authenticate('facebook', { failureRedirect: '/test' }), users.signin); - app.get('/auth/facebook/callback', passport.authenticate('facebook', { failureRedirect: '/test' }), users.authCallback); + app.get('/auth/facebook', passport.authenticate('facebook', { failureRedirect: '/' }), users.signin); + app.get('/auth/facebook/callback', passport.authenticate('facebook', { failureRedirect: '/' }), users.authCallback); - app.get('/auth/twitter', passport.authenticate('twitter', { failureRedirect: '/test' }), users.signin); - app.get('/auth/twitter/callback', passport.authenticate('twitter', { failureRedirect: '/test' }), users.authCallback); + app.get('/auth/twitter', passport.authenticate('twitter', { failureRedirect: '/' }), users.signin); + app.get('/auth/twitter/callback', passport.authenticate('twitter', { failureRedirect: '/' }), users.authCallback); app.get('/invite/:randomToken', users.claimInvite); @@ -46,7 +46,7 @@ module.exports = function(app, passport, auth) { app.get('/logout', users.logout); - app.get('/login/:hash', passport.authenticate('hash', { failureRedirect: '/test'}), users.randomLogin); + app.get('/login/:hash', passport.authenticate('hash', { failureRedirect: '/'}), users.randomLogin); /** * REQUIRES LOGIN -- cgit v1.2.3