瀏覽代碼

Flip bulkupload.enabled default value to true

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
tags/v25.0.0beta4
Côme Chilliet 1 年之前
父節點
當前提交
7f80dccbac
沒有連結到貢獻者的電子郵件帳戶。
共有 2 個檔案被更改,包括 3 行新增3 行删除
  1. 1
    1
      apps/dav/lib/Capabilities.php
  2. 2
    2
      config/config.sample.php

+ 1
- 1
apps/dav/lib/Capabilities.php 查看文件

@@ -39,7 +39,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';
}
return $capabilities;

+ 2
- 2
config/config.sample.php 查看文件

@@ -2242,7 +2242,7 @@ $CONFIG = [
/**
* Enable the bulk upload feature.
*
* Defaults to ``false``
* Defaults to ``true``
*/
'bulkupload.enabled' => false,
'bulkupload.enabled' => true,
];

Loading…
取消
儲存