Merge pull request #2533 from flant/notify-groups-access

fix: add notification about groups access to the Grant Access page
This commit is contained in:
Maksim Nabokikh 2022-05-25 18:20:30 +04:00 committed by GitHub
commit 957def7928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -238,6 +238,9 @@ var scopeDescriptions = map[string]string{
"offline_access": "Have offline access",
"profile": "View basic profile information",
"email": "View your email address",
// 'groups' is not a standard OIDC scope, and Dex only returns groups only if the upstream provider does too.
// This warning is added for convenience to show that the user may expose some sensitive data to the application.
"groups": "View your groups",
}
type connectorInfo struct {