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

Signed-off-by: Simon L. <szaimen@e.mail.de>
pull/52123/head
Simon L. 1 year ago committed by backportbot[bot]
parent d64e700a68
commit 90aad5759c
  1. 2
      apps/dav/lib/Capabilities.php
  2. 4
      config/config.sample.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()) {

@ -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

Loading…
Cancel
Save