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:
parent
c5d6220923
commit
fb7f2d08b0
|
@ -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: ""
|
||||||
|
|
Loading…
Reference in New Issue