DEV: Update LinkedIn OIDC client secret validation format (#27028)

The LinkedIn OIDC client secret format has changed. This updates the regular expression used for validation to reflect this.
This commit is contained in:
Ted Johansson 2024-05-15 13:32:59 +09:00 committed by GitHub
parent 2134ca9031
commit e1953f7042
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -512,7 +512,7 @@ login:
regex: "^[a-z0-9]+$"
linkedin_oidc_client_secret:
default: ""
regex: "^[a-zA-Z0-9]+$"
regex: "^[a-zA-Z0-9_=\\.]+$"
secret: true
auth_skip_create_confirm:
default: false