diff options
author | Joas Schilling <coding@schilljs.com> | 2024-10-07 10:58:03 +0200 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2024-10-07 09:00:43 +0000 |
commit | 513f57d9e2316fd1119b497b3a658998b238f035 (patch) | |
tree | 566409411d3171c82ac810752c970e7f2c0e2ffd | |
parent | ff24944fbdd120aa7089dfe2a609471f330dfdf3 (diff) | |
download | nextcloud-server-backport/48584/stable29.tar.gz nextcloud-server-backport/48584/stable29.zip |
fix(config): Mark more app configs sensitivebackport/48584/stable29
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 338792e23d1..59c35b0869d 100644 --- a/lib/private/AppConfig.php +++ b/lib/private/AppConfig.php @@ -1519,6 +1519,12 @@ class AppConfig implements IAppConfig { 'notify_push' => [ '/^cookie$/', ], + 'onlyoffice' => [ + '/^jwt_secret$/', + ], + 'passwords' => [ + '/^SSEv1ServerKey$/', + ], 'serverinfo' => [ '/^token$/', ], @@ -1550,6 +1556,9 @@ class AppConfig implements IAppConfig { 'user_ldap' => [ '/^(s..)?ldap_agent_password$/', ], + 'twofactor_gateway' => [ + '/^.*token$/', + ], 'user_saml' => [ '/^idp-x509cert$/', ], |