Compare commits

..

2 commits

Author SHA1 Message Date
Christopher (Cris) Fuhrman
3238ee1a22
Merge pull request #335 from ets-cfuhrman-pfe/fuhrmanator/issue278
Some checks failed
CI/CD Pipeline for Backend / build_and_push_backend (push) Failing after 37s
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 1m11s
Tests / lint-and-tests (server) (push) Successful in 30s
Fixes La page consentement revient toujours
2025-06-18 11:42:55 -04:00
C. Fuhrman
61054adb74 [BUG] La page consentement revient toujours
Fixes #278
2025-06-18 11:38:57 -04:00

View file

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