mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
fcdd41ea2a
This adds i18n for the OIDC scope descriptsions descriptions.
20 lines
402 B
Go
20 lines
402 B
Go
package oidc
|
|
|
|
// Scope strings.
|
|
const (
|
|
ScopeOpenID = "openid"
|
|
ScopeProfile = "profile"
|
|
ScopeEmail = "email"
|
|
ScopeGroups = "groups"
|
|
)
|
|
|
|
// Claim strings.
|
|
const (
|
|
ClaimGroups = "groups"
|
|
ClaimDisplayName = "name"
|
|
ClaimPreferredUsername = "preferred_username"
|
|
ClaimEmail = "email"
|
|
ClaimEmailVerified = "email_verified"
|
|
ClaimAltEmails = "alt_emails"
|
|
)
|