Compare commits

..

3 commits

Author SHA1 Message Date
Christopher (Cris) Fuhrman
fa56fc3577
Merge pull request #336 from ets-cfuhrman-pfe/fuhrmanator/issue278
Some checks failed
CI/CD Pipeline for Backend / build_and_push_backend (push) Failing after 18s
CI/CD Pipeline for Nginx Router / build_and_push_nginx (push) Failing after 18s
CI/CD Pipeline for Frontend / build_and_push_frontend (push) Failing after 17s
Tests / lint-and-tests (client) (push) Successful in 1m8s
Tests / lint-and-tests (server) (push) Successful in 30s
Page de consentement une fois
2025-06-18 12:10:53 -04:00
C. Fuhrman
cba723e554 Merge remote-tracking branch 'origin/main' into fuhrmanator/issue278 2025-06-18 12:08:13 -04:00
C. Fuhrman
dd759442fc oidc.js is the one used by Azure AD.
Fixes #278
2025-06-18 12:05:08 -04:00

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);
});