diff options
author | Joas Schilling <coding@schilljs.com> | 2024-10-07 11:46:39 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2024-10-07 15:26:41 +0200 |
commit | b7248975e035d1a529e2ef2dc3b7acd572f3ef99 (patch) | |
tree | 4c8ea4b392222a25181a61c5cdd69e403582ab43 | |
parent | 9dd8064a78eb98f7a91822f146f598252b81c2be (diff) | |
download | nextcloud-server-backport/48584/stable28.tar.gz nextcloud-server-backport/48584/stable28.zip |
fix(config): Mark more app configs sensitivebackport/48584/stable28
Signed-off-by: Joas Schilling <coding@schilljs.com>
-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 f92abb2caad..4393065c1cc 100644 --- a/lib/private/AppConfig.php +++ b/lib/private/AppConfig.php @@ -109,6 +109,12 @@ class AppConfig implements IAppConfig { 'notify_push' => [ '/^cookie$/', ], + 'onlyoffice' => [ + '/^jwt_secret$/', + ], + 'passwords' => [ + '/^SSEv1ServerKey$/', + ], 'serverinfo' => [ '/^token$/', ], @@ -140,6 +146,9 @@ class AppConfig implements IAppConfig { 'user_ldap' => [ '/^(s..)?ldap_agent_password$/', ], + 'twofactor_gateway' => [ + '/^.*token$/', + ], 'user_saml' => [ '/^idp-x509cert$/', ], |