fix(config): Censor more app configs in system report

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2025-04-25 08:43:36 +02:00
parent 1ae57fb054
commit 8524955091
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0

View file

@ -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$/',
],