feat: adds displayName property to OIDC authentication module (#6096)

* Adds displayName property to oidc authentication method
* fix: update displayName prop
* fix: use blank display name in oidc auth

---------

Co-authored-by: Nicolas Giard <github@ngpixel.com>
This commit is contained in:
gueldi
2023-01-29 23:55:47 +01:00
committed by GitHub
parent 5f876ced20
commit 43a797d322
2 changed files with 12 additions and 4 deletions

View File

@@ -28,7 +28,8 @@ module.exports = {
providerKey: req.params.strategy,
profile: {
...profile,
email: _.get(profile, '_json.' + conf.emailClaim)
email: _.get(profile, '_json.' + conf.emailClaim),
displayName: _.get(profile, conf.displayNameClaim, ''),
}
})
if (conf.mapGroups) {