diff options
author | Joas Schilling <coding@schilljs.com> | 2024-10-28 14:56:19 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-10-28 14:56:19 +0100 |
commit | 1e5cb82cc1b8b205a805237065b5008e080ee13f (patch) | |
tree | f797f501b181d0363c5a861100e7f49b58a2f670 /lib/private/AppConfig.php | |
parent | 2a437b4305e7bc9a0f238fe177f49cb03ee22680 (diff) | |
download | nextcloud-server-1e5cb82cc1b8b205a805237065b5008e080ee13f.tar.gz nextcloud-server-1e5cb82cc1b8b205a805237065b5008e080ee13f.zip |
fix(config): Mark more configs as sensitivebugfix/noid/mark-more-configs-as-sensitive
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private/AppConfig.php')
-rw-r--r-- | lib/private/AppConfig.php | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php index b1fde7c4965..312b6973403 100644 --- a/lib/private/AppConfig.php +++ b/lib/private/AppConfig.php @@ -1430,10 +1430,16 @@ class AppConfig implements IAppConfig { '/^key_pairs$/', '/^local_gskey$/', ], + 'call_summary_bot' => [ + '/^secret_(.*)$/', + ], 'external' => [ '/^sites$/', '/^jwt_token_privkey_(.*)$/', ], + 'globalsiteselector' => [ + '/^gss\.jwt\.key$/', + ], 'integration_discourse' => [ '/^private_key$/', '/^public_key$/', @@ -1534,6 +1540,9 @@ class AppConfig implements IAppConfig { 'user_saml' => [ '/^idp-x509cert$/', ], + 'whiteboard' => [ + '/^jwt_secret_key$/', + ], ]; return $sensitiveValues[$app] ?? []; |