diff options
author | Joas Schilling <coding@schilljs.com> | 2022-02-23 10:31:17 +0100 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2022-02-23 10:31:17 +0100 |
commit | 6302ff0f96800892d58b82aa07c4aa36a7c57ea7 (patch) | |
tree | 98d245f1f42ebad5533ecdabdc75259f2f8d41e2 /lib | |
parent | 99e7f335500fec8f0ad62d2cacd90dbe5973c4a9 (diff) | |
download | nextcloud-server-6302ff0f96800892d58b82aa07c4aa36a7c57ea7.tar.gz nextcloud-server-6302ff0f96800892d58b82aa07c4aa36a7c57ea7.zip |
Mark split database configs as sensitive
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/SystemConfig.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index c435b9180b9..012c959ce85 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -43,6 +43,10 @@ class SystemConfig { 'dbhost' => true, 'dbpassword' => true, 'dbuser' => true, + 'activity_dbname' => true, + 'activity_dbhost' => true, + 'activity_dbpassword' => true, + 'activity_dbuser' => true, 'mail_from_address' => true, 'mail_domain' => true, 'mail_smtphost' => true, |