Revert "feat(bulk-upload): change the default to disabled as there are still some bugs present"

pull/52137/head
Louis 2025-04-11 23:39:25 +07:00 committed by GitHub
parent f61cec4b8e
commit a81440d11c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

@ -25,7 +25,7 @@ class Capabilities implements ICapability {
'chunking' => '1.0', 'chunking' => '1.0',
] ]
]; ];
if ($this->config->getSystemValueBool('bulkupload.enabled', false)) { if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
$capabilities['dav']['bulkupload'] = '1.0'; $capabilities['dav']['bulkupload'] = '1.0';
} }
if ($this->coordinator->isEnabled()) { if ($this->coordinator->isEnabled()) {

@ -2563,9 +2563,9 @@ $CONFIG = [
/** /**
* Enable the bulk upload feature. * 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 * Enables fetching open graph metadata from remote urls