Compare commits

..

No commits in common. "fa56fc3577f5c209e0d3734b803e2325ac27231b" and "3238ee1a2216a34b76c966d9ba289d059cec425f" have entirely different histories.

View file

@ -102,7 +102,8 @@ class PassportOpenIDConnect {
app.get(`${endpoint}/${name}`, (req, res, next) => { app.get(`${endpoint}/${name}`, (req, res, next) => {
passport.authenticate(name, { passport.authenticate(name, {
scope: scope scope: scope,
prompt: 'consent'
})(req, res, next); })(req, res, next);
}); });