- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for GetUserIDClaim (0.06 sec)
-
cmd/user-provider-utils.go
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 4.1K bytes - Viewed (0) -
internal/config/identity/openid/openid.go
pCfg, ok := r.ProviderCfgs[cfgName] if ok { return pCfg.UserReadableClaim } return "" } // GetUserIDClaim returns the user ID claim for the given configuration name, or "sub" if not set. func (r Config) GetUserIDClaim(cfgName string) string { pCfg, ok := r.ProviderCfgs[cfgName] if ok { if pCfg.UserIDClaim != "" { return pCfg.UserIDClaim } return "sub"
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Fri Aug 29 02:39:48 UTC 2025 - 17.3K bytes - Viewed (0) -
cmd/admin-handlers-idp-openid.go
arn = dummyRoleARN } matchingCfgName, ok := roleArnMap[arn] if !ok { continue // skip if not part of the target config } var id string if idClaim := globalIAMSys.OpenIDConfig.GetUserIDClaim(matchingCfgName); idClaim != "" { id, _ = accessKey.Claims[idClaim].(string) } if !userSet.IsEmpty() && !userSet.Contains(accessKey.ParentUser) && !userSet.Contains(id) { continue // skip if not in the user list
Registered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sat Sep 06 17:38:46 UTC 2025 - 7.6K bytes - Viewed (0)