aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon L. <szaimen@e.mail.de>2025-03-12 12:16:52 +0100
committerSimon L. <szaimen@e.mail.de>2025-04-10 15:28:52 +0200
commit5e6478fd645ec9d255cdf0487475064aeaf39c5b (patch)
treed95e8893282779ea87c1a8d5d00121d1058a0c99
parent9e0e53707f02c455bb5998130d0556ade7ca298f (diff)
downloadnextcloud-server-enh/noid/disable-bulk-upload.tar.gz
nextcloud-server-enh/noid/disable-bulk-upload.zip
feat(bulk-upload): change the default to disabled as there are still some bugs presentenh/noid/disable-bulk-upload
Signed-off-by: Simon L. <szaimen@e.mail.de>
-rw-r--r--apps/dav/lib/Capabilities.php2
-rw-r--r--config/config.sample.php4
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/lib/Capabilities.php b/apps/dav/lib/Capabilities.php
index ab4e53fce37..cc4eb09a389 100644
--- a/apps/dav/lib/Capabilities.php
+++ b/apps/dav/lib/Capabilities.php
@@ -25,7 +25,7 @@ class Capabilities implements ICapability {
'chunking' => '1.0',
]
];
- if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
+ if ($this->config->getSystemValueBool('bulkupload.enabled', false)) {
$capabilities['dav']['bulkupload'] = '1.0';
}
if ($this->coordinator->isEnabled()) {
diff --git a/config/config.sample.php b/config/config.sample.php
index d366d737757..9a5e33f3cac 100644
--- a/config/config.sample.php
+++ b/config/config.sample.php
@@ -2563,9 +2563,9 @@ $CONFIG = [
/**
* Enable the bulk upload feature.
*
- * Defaults to ``true``
+ * Defaults to ``false``
*/
-'bulkupload.enabled' => true,
+'bulkupload.enabled' => false,
/**
* Enables fetching open graph metadata from remote urls