mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(config): Censor more app configs in system report
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
1ae57fb054
commit
8524955091
1 changed files with 9 additions and 3 deletions
|
|
@ -1423,6 +1423,9 @@ class AppConfig implements IAppConfig {
|
|||
'globalsiteselector' => [
|
||||
'/^gss\.jwt\.key$/',
|
||||
],
|
||||
'gpgmailer' => [
|
||||
'/^GpgServerKey$/',
|
||||
],
|
||||
'integration_discourse' => [
|
||||
'/^private_key$/',
|
||||
'/^public_key$/',
|
||||
|
|
@ -1477,6 +1480,9 @@ class AppConfig implements IAppConfig {
|
|||
'/^client_secret$/',
|
||||
'/^oauth_instance_url$/',
|
||||
],
|
||||
'maps' => [
|
||||
'/^mapboxAPIKEY$/',
|
||||
],
|
||||
'notify_push' => [
|
||||
'/^cookie$/',
|
||||
],
|
||||
|
|
@ -1514,12 +1520,12 @@ class AppConfig implements IAppConfig {
|
|||
'/^slogan$/',
|
||||
'/^url$/',
|
||||
],
|
||||
'user_ldap' => [
|
||||
'/^(s..)?ldap_agent_password$/',
|
||||
],
|
||||
'twofactor_gateway' => [
|
||||
'/^.*token$/',
|
||||
],
|
||||
'user_ldap' => [
|
||||
'/^(s..)?ldap_agent_password$/',
|
||||
],
|
||||
'user_saml' => [
|
||||
'/^idp-x509cert$/',
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue