mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
Revert "[stable31] feat(bulk-upload): change the default to disabled as there are still some bugs present"
This commit is contained in:
parent
6c8fa2a145
commit
215fa11204
2 changed files with 3 additions and 3 deletions
|
|
@ -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()) {
|
||||
|
|
|
|||
|
|
@ -2573,9 +2573,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
|
||||
|
|
|
|||
Loading…
Reference in a new issue