diff options
author | John Molakvoæ <skjnldsv@users.noreply.github.com> | 2024-12-20 08:15:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-20 08:15:25 +0100 |
commit | c249df613d1ae06d998dc4116feaf0345bb04f5c (patch) | |
tree | ee540579990f834debc4fd69e1b91c4406952134 | |
parent | c81e17fbe769d715c525f8a09437182f0f9fc3e4 (diff) | |
parent | ab8fdad6ca2b7485c2777941ed17ae326fb94e5d (diff) | |
download | nextcloud-server-c249df613d1ae06d998dc4116feaf0345bb04f5c.tar.gz nextcloud-server-c249df613d1ae06d998dc4116feaf0345bb04f5c.zip |
Merge pull request #49681 from rriemann/patch-1
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 5818f78f962..d3fd1f2ab04 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -73,6 +73,7 @@ class SystemConfig { // S3 'key' => true, 'secret' => true, + 'sse_c_key' => true, // Swift v2 'username' => true, 'password' => true, |