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
This commit is contained in:
Christopher (Cris) Fuhrman 2025-06-18 11:42:55 -04:00 committed by GitHub
commit 3238ee1a22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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