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:
parent
2134ca9031
commit
e1953f7042
|
@ -512,7 +512,7 @@ login:
|
||||||
regex: "^[a-z0-9]+$"
|
regex: "^[a-z0-9]+$"
|
||||||
linkedin_oidc_client_secret:
|
linkedin_oidc_client_secret:
|
||||||
default: ""
|
default: ""
|
||||||
regex: "^[a-zA-Z0-9]+$"
|
regex: "^[a-zA-Z0-9_=\\.]+$"
|
||||||
secret: true
|
secret: true
|
||||||
auth_skip_create_confirm:
|
auth_skip_create_confirm:
|
||||||
default: false
|
default: false
|
||||||
|
|
Loading…
Reference in New Issue