diff options
author | Louis <louis@chmn.me> | 2025-04-11 23:39:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-11 23:39:25 +0200 |
commit | a81440d11cd7a9b264916c28590699ca1d10d122 (patch) | |
tree | 80f6f0ee8098795db2f9e60467057fb5e1ce513c | |
parent | f61cec4b8eeff0ce0c5da248181852336443c2ba (diff) | |
download | nextcloud-server-revert-51431-enh/noid/disable-bulk-upload.tar.gz nextcloud-server-revert-51431-enh/noid/disable-bulk-upload.zip |
Revert "feat(bulk-upload): change the default to disabled as there are still some bugs present"revert-51431-enh/noid/disable-bulk-upload
-rw-r--r-- | apps/dav/lib/Capabilities.php | 2 | ||||
-rw-r--r-- | config/config.sample.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/dav/lib/Capabilities.php b/apps/dav/lib/Capabilities.php index cc4eb09a389..ab4e53fce37 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', false)) { + if ($this->config->getSystemValueBool('bulkupload.enabled', true)) { $capabilities['dav']['bulkupload'] = '1.0'; } if ($this->coordinator->isEnabled()) { diff --git a/config/config.sample.php b/config/config.sample.php index 9a5e33f3cac..d366d737757 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2563,9 +2563,9 @@ $CONFIG = [ /** * Enable the bulk upload feature. * - * Defaults to ``false`` + * Defaults to ``true`` */ -'bulkupload.enabled' => false, +'bulkupload.enabled' => true, /** * Enables fetching open graph metadata from remote urls |