FIX: mark oauth2_client_secret as secret

The `oauth2_client_secret` should be marked as secret to mask it by default in
the admin UI.
This commit is contained in:
Michael Brown 2025-07-08 09:32:34 -04:00
parent c5d6220923
commit fb7f2d08b0
No known key found for this signature in database
GPG Key ID: 6C07FB3007CF9360
1 changed files with 3 additions and 1 deletions

View File

@ -3,7 +3,9 @@ login:
default: false default: false
client: true client: true
oauth2_client_id: "" oauth2_client_id: ""
oauth2_client_secret: "" oauth2_client_secret:
default: ""
secret: true
oauth2_authorize_url: "" oauth2_authorize_url: ""
oauth2_authorize_signup_url: "" oauth2_authorize_signup_url: ""
oauth2_token_url: "" oauth2_token_url: ""