From 718d94b9d7028442893b0b248c85cffd5195be05 Mon Sep 17 00:00:00 2001 From: Wolfgang Knopki <wolfgang.knopki@hft-stuttgart.de> Date: Fri, 6 Dec 2019 14:42:41 +0100 Subject: [PATCH] login path after redirect from idp changed --- routes/routes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/routes/routes.js b/routes/routes.js index 7077fc1d..682cab25 100644 --- a/routes/routes.js +++ b/routes/routes.js @@ -103,7 +103,7 @@ module.exports = function (app, config, passport) { app.get('/login', passport.authenticate(config.passport.strategy, { - successRedirect: '/', + successRedirect: '/account', failureRedirect: '/login' }) ); -- GitLab