aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2024-10-28 14:56:19 +0100
committerJoas Schilling <coding@schilljs.com>2024-10-28 16:32:03 +0100
commit5159a5f71d49c4cf5c46ce72df632ddb2566ce83 (patch)
tree1b13661df7b886d5eb86e37f0d36fc9e8ea46b6d /lib/private
parent129be718e8e5bf8dd2efe3255adcd448cd348618 (diff)
downloadnextcloud-server-5159a5f71d49c4cf5c46ce72df632ddb2566ce83.tar.gz
nextcloud-server-5159a5f71d49c4cf5c46ce72df632ddb2566ce83.zip
fix(config): Mark more configs as sensitivebackport/48947/stable28
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/private')
-rw-r--r--lib/private/AppConfig.php9
-rw-r--r--lib/private/SystemConfig.php1
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/private/AppConfig.php b/lib/private/AppConfig.php
index 0ae19cd0f74..6b4da6bb80e 100644
--- a/lib/private/AppConfig.php
+++ b/lib/private/AppConfig.php
@@ -49,10 +49,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$/',
@@ -153,6 +159,9 @@ class AppConfig implements IAppConfig {
'user_saml' => [
'/^idp-x509cert$/',
],
+ 'whiteboard' => [
+ '/^jwt_secret_key$/',
+ ],
];
/** @var Connection */
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php
index 80e4ba55e39..98e7a55e0fb 100644
--- a/lib/private/SystemConfig.php
+++ b/lib/private/SystemConfig.php
@@ -125,6 +125,7 @@ class SystemConfig {
'onlyoffice' => [
'jwt_secret' => true,
],
+ 'PASS' => true,
];
/** @var Config */