Browse Source
Flip bulkupload.enabled default value to true
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/33697/head
Côme Chilliet
3 years ago
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
2 changed files with
3 additions and
3 deletions
-
apps/dav/lib/Capabilities.php
-
config/config.sample.php
|
|
|
@ -39,7 +39,7 @@ class Capabilities implements ICapability { |
|
|
|
'chunking' => '1.0', |
|
|
|
] |
|
|
|
]; |
|
|
|
if ($this->config->getSystemValueBool('bulkupload.enabled', false)) { |
|
|
|
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) { |
|
|
|
$capabilities['dav']['bulkupload'] = '1.0'; |
|
|
|
} |
|
|
|
return $capabilities; |
|
|
|
|
|
|
|
@ -2242,7 +2242,7 @@ $CONFIG = [ |
|
|
|
/** |
|
|
|
* Enable the bulk upload feature. |
|
|
|
* |
|
|
|
* Defaults to ``false`` |
|
|
|
* Defaults to ``true`` |
|
|
|
*/ |
|
|
|
'bulkupload.enabled' => false, |
|
|
|
'bulkupload.enabled' => true, |
|
|
|
]; |