aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2019-10-27 00:51:39 +0200
committerDaniel Kesselberg <mail@danielkesselberg.de>2019-10-27 00:51:39 +0200
commit83af640780fd1532316b07bdfc68fd570c487a2c (patch)
treeb0f32b8273f4c9142db0cee8538e84ed252b04f0 /lib
parent8e44e0134ade5cda3ffd55e890b5819314ae551f (diff)
downloadnextcloud-server-83af640780fd1532316b07bdfc68fd570c487a2c.tar.gz
nextcloud-server-83af640780fd1532316b07bdfc68fd570c487a2c.zip
Remove objectstore credentials
Also remove the username for Swift v2 and add todo for unclear keys. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/private/SystemConfig.php5
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,