feat: add User ID Claim field to OIDC admin config UI
Some checks failed
CI / cleanup-branch (push) Has been skipped
CI / build (push) Successful in 1m5s
CI / deploy (push) Has been cancelled
CI / deploy-feature (push) Has been cancelled
CI / docker (push) Has been cancelled

New input in the Claim Mapping section lets admins configure which
id_token claim is used as the unique user identifier (default: sub).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
hsiegeln
2026-04-06 10:19:38 +02:00
parent a96cf2afed
commit 0c77f8d594
2 changed files with 12 additions and 0 deletions

View File

@@ -1444,6 +1444,7 @@ export interface components {
defaultRoles?: string[];
autoSignup?: boolean;
displayNameClaim?: string;
userIdClaim?: string;
};
/** @description Error response */
ErrorResponse: {
@@ -1460,6 +1461,7 @@ export interface components {
defaultRoles?: string[];
autoSignup?: boolean;
displayNameClaim?: string;
userIdClaim?: string;
};
UpdateGroupRequest: {
name?: string;