1
1
mirror of https://github.com/go-gitea/gitea synced 2025-08-04 00:28:36 +00:00

Fixed typo in oauth2_full_name_claim_name string (#35199)

Fixes: #35197

- Replaced ';' with '-' in oauth2_full_name_claim_name string to fix
parsing issue.

Signed-off-by: satnam72 <125819218+satnam72@users.noreply.github.com>
This commit is contained in:
satnam72
2025-08-01 19:26:43 -04:00
committed by GitHub
parent 5d94c9dd21
commit 5b1ab35ced

View File

@@ -3253,7 +3253,7 @@ auths.oauth2_required_claim_name_helper = Set this name to restrict login from t
auths.oauth2_required_claim_value = Required Claim Value auths.oauth2_required_claim_value = Required Claim Value
auths.oauth2_required_claim_value_helper = Set this value to restrict login from this source to users with a claim with this name and value auths.oauth2_required_claim_value_helper = Set this value to restrict login from this source to users with a claim with this name and value
auths.oauth2_group_claim_name = Claim name providing group names for this source. (Optional) auths.oauth2_group_claim_name = Claim name providing group names for this source. (Optional)
auths.oauth2_full_name_claim_name = Full Name Claim Name. (Optional; if set, the user's full name will always be synchronized with this claim) auths.oauth2_full_name_claim_name = Full Name Claim Name. (Optional if set, the user's full name will always be synchronized with this claim)
auths.oauth2_ssh_public_key_claim_name = SSH Public Key Claim Name auths.oauth2_ssh_public_key_claim_name = SSH Public Key Claim Name
auths.oauth2_admin_group = Group Claim value for administrator users. (Optional — requires claim name above) auths.oauth2_admin_group = Group Claim value for administrator users. (Optional — requires claim name above)
auths.oauth2_restricted_group = Group Claim value for restricted users. (Optional — requires claim name above) auths.oauth2_restricted_group = Group Claim value for restricted users. (Optional — requires claim name above)