oidc.js is the one used by Azure AD.

Fixes #278
This commit is contained in:
C. Fuhrman 2025-06-18 12:05:08 -04:00
parent 61054adb74
commit dd759442fc

View file

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