mirror of
https://github.com/nextcloud/server.git
synced 2026-02-27 03:50:37 -05:00
feat(bulk-upload): change the default to disabled as there are still some bugs present
Signed-off-by: Simon L. <szaimen@e.mail.de>
This commit is contained in:
parent
a253538d6a
commit
2b4a4556e4
2 changed files with 3 additions and 3 deletions
|
|
@ -27,7 +27,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()) {
|
||||
|
|
|
|||
|
|
@ -2519,9 +2519,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…
Reference in a new issue