diff --git a/src/routes/authentication.js b/src/routes/authentication.js index 8e1824cad6..62e2c66224 100644 --- a/src/routes/authentication.js +++ b/src/routes/authentication.js @@ -52,7 +52,8 @@ loginStrategies.forEach(function(strategy) { if (strategy.url) { router.get(strategy.url, passport.authenticate(strategy.name, { - scope: strategy.scope + scope: strategy.scope, + prompt: strategy.prompt || undefined })); }