mirror of
https://github.com/nextcloud/server.git
synced 2026-02-18 18:28:50 -05:00
fix: temporarily disable public shares chunking capability
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com> Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
This commit is contained in:
parent
332ab743c5
commit
365a040dc3
2 changed files with 4 additions and 4 deletions
|
|
@ -24,7 +24,7 @@ class Capabilities implements ICapability {
|
|||
$capabilities = [
|
||||
'dav' => [
|
||||
'chunking' => '1.0',
|
||||
'public_shares_chunking' => true,
|
||||
'public_shares_chunking' => false,
|
||||
]
|
||||
];
|
||||
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class CapabilitiesTest extends TestCase {
|
|||
$expected = [
|
||||
'dav' => [
|
||||
'chunking' => '1.0',
|
||||
'public_shares_chunking' => true,
|
||||
'public_shares_chunking' => false,
|
||||
],
|
||||
];
|
||||
$this->assertSame($expected, $capabilities->getCapabilities());
|
||||
|
|
@ -50,7 +50,7 @@ class CapabilitiesTest extends TestCase {
|
|||
$expected = [
|
||||
'dav' => [
|
||||
'chunking' => '1.0',
|
||||
'public_shares_chunking' => true,
|
||||
'public_shares_chunking' => false,
|
||||
'bulkupload' => '1.0',
|
||||
],
|
||||
];
|
||||
|
|
@ -71,7 +71,7 @@ class CapabilitiesTest extends TestCase {
|
|||
$expected = [
|
||||
'dav' => [
|
||||
'chunking' => '1.0',
|
||||
'public_shares_chunking' => true,
|
||||
'public_shares_chunking' => false,
|
||||
'absence-supported' => true,
|
||||
'absence-replacement' => true,
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue