diff options
-rw-r--r-- | lib/private/SystemConfig.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/private/SystemConfig.php b/lib/private/SystemConfig.php index 6cd2ef54dc3..e727dc95d5f 100644 --- a/lib/private/SystemConfig.php +++ b/lib/private/SystemConfig.php @@ -64,7 +64,7 @@ class SystemConfig { ], 'objectstore' => [ 'arguments' => [ - 'password' => true, + // @Todo: Is this still valid? 'options' => [ 'credentials' => [ 'key' => true, @@ -74,6 +74,9 @@ class SystemConfig { // S3 'key' => true, 'secret' => true, + // Swift v2 + 'username' => true, + 'password' => true, // Swift v3 'user' => [ 'name' => true, |