diff options
author | Joas Schilling <coding@schilljs.com> | 2022-02-23 10:31:17 +0100 |
---|---|---|
committer | backportbot[bot] <backportbot[bot]@users.noreply.github.com> | 2022-02-23 16:39:22 +0000 |
commit | 7c3a0ca0af3d8b87ff9cd0510c4a3de7ced841d9 (patch) | |
tree | 2d5af3ba54765df33d6962200e551ae4c3b3890c | |
parent | 28c526b29eee256e273eafd07844ccc5ceb37df7 (diff) | |
download | nextcloud-server-7c3a0ca0af3d8b87ff9cd0510c4a3de7ced841d9.tar.gz nextcloud-server-7c3a0ca0af3d8b87ff9cd0510c4a3de7ced841d9.zip |
Mark split database configs as sensitive
Signed-off-by: Joas Schilling <coding@schilljs.com>
-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, |