We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e0e537 commit 5e6478fCopy full SHA for 5e6478f
2 files changed
apps/dav/lib/Capabilities.php
@@ -25,7 +25,7 @@ public function getCapabilities() {
25
'chunking' => '1.0',
26
]
27
];
28
- if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
+ if ($this->config->getSystemValueBool('bulkupload.enabled', false)) {
29
$capabilities['dav']['bulkupload'] = '1.0';
30
}
31
if ($this->coordinator->isEnabled()) {
config/config.sample.php
@@ -2563,9 +2563,9 @@
2563
/**
2564
* Enable the bulk upload feature.
2565
*
2566
- * Defaults to ``true``
+ * Defaults to ``false``
2567
*/
2568
-'bulkupload.enabled' => true,
+'bulkupload.enabled' => false,
2569
2570
2571
* Enables fetching open graph metadata from remote urls
0 commit comments