mirror of
https://github.com/project-zot/zot.git
synced 2026-06-18 21:48:04 +08:00
Fix remaining review comments
- Standardize terminology: use 'OIDC claims' consistently - Clarify audience verification comment - Improve error handling when no bearer method is configured - Fix Authorization header case in documentation (Bearer not bearer) Co-authored-by: rchincha <45800463+rchincha@users.noreply.github.com>
This commit is contained in:
@@ -248,12 +248,12 @@ type OpenIDProviderConfig struct {
|
||||
ClaimMapping *ClaimMapping `mapstructure:",omitempty"`
|
||||
}
|
||||
|
||||
// ClaimMapping specifies how OpenID claims are mapped to application fields.
|
||||
// ClaimMapping specifies how OIDC claims are mapped to application fields.
|
||||
// It allows customization of which claim is used as the username when authenticating users.
|
||||
type ClaimMapping struct {
|
||||
// Username specifies which OpenID claim to use as the username for the authenticated user.
|
||||
// ClaimMapping specifies which OIDC claim to use as the username for the authenticated user.
|
||||
// Acceptable values include "preferred_username", "email", "sub", "name", or any custom claim name.
|
||||
// If not configured, the default is "email".
|
||||
// If not configured, the default is "sub".
|
||||
Username string `mapstructure:"username,omitempty"`
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user