Browse Source

fix(config): Mark more app configs sensitive

Signed-off-by: Joas Schilling <coding@schilljs.com>
pull/48584/head
Joas Schilling 1 year ago
parent
commit
c900ef9d8e
No known key found for this signature in database GPG Key ID: F72FA5B49FFA96B0
  1. 9
      lib/private/AppConfig.php

9
lib/private/AppConfig.php

@ -1490,6 +1490,12 @@ class AppConfig implements IAppConfig {
'notify_push' => [
'/^cookie$/',
],
'onlyoffice' => [
'/^jwt_secret$/',
],
'passwords' => [
'/^SSEv1ServerKey$/',
],
'serverinfo' => [
'/^token$/',
],
@ -1521,6 +1527,9 @@ class AppConfig implements IAppConfig {
'user_ldap' => [
'/^(s..)?ldap_agent_password$/',
],
'twofactor_gateway' => [
'/^.*token$/',
],
'user_saml' => [
'/^idp-x509cert$/',
],

Loading…
Cancel
Save