diff options
author | Josh <josh.t.richards@gmail.com> | 2025-01-22 14:32:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-22 14:32:16 -0500 |
commit | d09f640209d4ae539bd07f5ba7603233a45a4d55 (patch) | |
tree | fccc0579c06b2de526b7655f76b04a940f0c66b9 | |
parent | 09f47f65e5ba8799a5de906cfe7baf36cf8e85d1 (diff) | |
parent | bb967126387c1f948c06a01cfe7b78f533d21eb1 (diff) | |
download | nextcloud-server-d09f640209d4ae539bd07f5ba7603233a45a4d55.tar.gz nextcloud-server-d09f640209d4ae539bd07f5ba7603233a45a4d55.zip |
Merge pull request #49933 from nextcloud/backport/49681/stable29
[stable29] add sse_c_key from S3 object storage properties config to list of sensitive values
-rw-r--r-- | lib/private/SystemConfig.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index f8a219091e0..2d4226f48df 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -91,6 +91,7 @@ class SystemConfig { // S3 'key' => true, 'secret' => true, + 'sse_c_key' => true, // Swift v2 'username' => true, 'password' => true, |