mirror of
https://github.com/ets-cfuhrman-pfe/EvalueTonSavoir.git
synced 2025-08-11 21:23:54 -04:00
Merge pull request #281 from ets-cfuhrman-pfe/bug/sso-consent
Some checks failed
CI/CD Pipeline for Backend / build_and_push_backend (push) Failing after 17s
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 18s
Tests / lint-and-tests (client) (push) Failing after 1m6s
Tests / lint-and-tests (server) (push) Failing after 57s
Some checks failed
CI/CD Pipeline for Backend / build_and_push_backend (push) Failing after 17s
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 18s
Tests / lint-and-tests (client) (push) Failing after 1m6s
Tests / lint-and-tests (server) (push) Failing after 57s
corrections to received user
This commit is contained in:
commit
59dc478eb1
1 changed files with 2 additions and 2 deletions
|
|
@ -24,8 +24,8 @@ class PassportOpenIDConnect {
|
|||
try {
|
||||
const received_user = {
|
||||
auth_id: profile.id,
|
||||
email: profile.emails[0].value,
|
||||
name: profile.name.givenName,
|
||||
email: profile.emails[0].value.toLowerCase(),
|
||||
name: profile.name.displayName,
|
||||
roles: []
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue