Compare commits

..

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

View file

@ -75,7 +75,8 @@ class PassportOAuth {
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);
}); });