blob: b0f63f80f2daf6c39c174c52693c7e446b6b843c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<?php
/**
* SPDX-FileCopyrightText: 2016 ownCloud GmbH
* SPDX-License-Identifier: AGPL-3.0-only
*/
namespace OCA\DAV;
use OCP\Capabilities\ICapability;
use OCP\IConfig;
class Capabilities implements ICapability {
public function __construct(
private IConfig $config,
) {
}
/**
* @return array{dav: array{chunking: string, bulkupload?: string}}
*/
public function getCapabilities() {
$capabilities = [
'dav' => [
'chunking' => '1.0',
]
];
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
$capabilities['dav']['bulkupload'] = '1.0';
}
return $capabilities;
}
}
|