Conditions | 2 |
Paths | 2 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
40 | public function getCapabilities() { |
||
41 | $cap = [ |
||
42 | 'dav' => [ |
||
43 | 'chunking' => '1.0', |
||
44 | 'zsync' => '1.0', |
||
45 | 'reports' => [ |
||
46 | 'search-files', |
||
47 | ] |
||
48 | ] |
||
49 | ]; |
||
50 | |||
51 | if ($this->config->getSystemValue('dav.enable.async', false)) { |
||
52 | $cap['async'] = '1.0'; |
||
53 | } |
||
54 | |||
55 | return $cap; |
||
56 | } |
||
57 | } |
||
58 |