mirror of
https://github.com/nextcloud/server.git
synced 2026-06-14 11:11:42 -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
4c9c2c4bb2
commit
306e03b080
1 changed files with 9 additions and 3 deletions
|
|
@ -1469,6 +1469,9 @@ class AppConfig implements IAppConfig {
|
|||
'globalsiteselector' => [
|
||||
'/^gss\.jwt\.key$/',
|
||||
],
|
||||
'gpgmailer' => [
|
||||
'/^GpgServerKey$/',
|
||||
],
|
||||
'integration_discourse' => [
|
||||
'/^private_key$/',
|
||||
'/^public_key$/',
|
||||
|
|
@ -1523,6 +1526,9 @@ class AppConfig implements IAppConfig {
|
|||
'/^client_secret$/',
|
||||
'/^oauth_instance_url$/',
|
||||
],
|
||||
'maps' => [
|
||||
'/^mapboxAPIKEY$/',
|
||||
],
|
||||
'notify_push' => [
|
||||
'/^cookie$/',
|
||||
],
|
||||
|
|
@ -1560,12 +1566,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