Compare commits

...

2 commits

Author SHA1 Message Date
Christopher (Cris) Fuhrman
b3c618a811
Merge pull request #271 from ets-cfuhrman-pfe/debug-oidc-1
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 17s
CI/CD Pipeline for Frontend / build_and_push_frontend (push) Failing after 17s
Tests / lint-and-tests (client) (push) Failing after 1m0s
Tests / lint-and-tests (server) (push) Failing after 53s
fix profile displayName
2025-03-04 14:05:07 -05:00
C. Fuhrman
bb43eca723 fix profile displayName 2025-03-04 14:03:43 -05:00

View file

@ -52,7 +52,7 @@ class PassportOpenIDConnect {
const received_user = {
auth_id: profile.id,
email: profile.emails[0].value,
name: profile.name.givenName,
name: profile.displayName,
roles: []
};