mirror of
https://github.com/nextcloud/server.git
synced 2026-04-15 22:11:17 -04:00
Revert "fix: temporarily disable public shares chunking capability"
This reverts commit 365a040dc3.
Signed-off-by: provokateurin <kate@provokateurin.de>
This commit is contained in:
parent
bcae49614e
commit
9b438cc407
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' => false,
|
||||
'public_shares_chunking' => true,
|
||||
]
|
||||
];
|
||||
if ($this->config->getSystemValueBool('bulkupload.enabled', true)) {
|
||||
|
|
|
|||
|
|
@ -30,7 +30,7 @@ class CapabilitiesTest extends TestCase {
|
|||
$expected = [
|
||||
'dav' => [
|
||||
'chunking' => '1.0',
|
||||
'public_shares_chunking' => false,
|
||||
'public_shares_chunking' => true,
|
||||
],
|
||||
];
|
||||
$this->assertSame($expected, $capabilities->getCapabilities());
|
||||
|
|
@ -50,7 +50,7 @@ class CapabilitiesTest extends TestCase {
|
|||
$expected = [
|
||||
'dav' => [
|
||||
'chunking' => '1.0',
|
||||
'public_shares_chunking' => false,
|
||||
'public_shares_chunking' => true,
|
||||
'bulkupload' => '1.0',
|
||||
],
|
||||
];
|
||||
|
|
@ -71,7 +71,7 @@ class CapabilitiesTest extends TestCase {
|
|||
$expected = [
|
||||
'dav' => [
|
||||
'chunking' => '1.0',
|
||||
'public_shares_chunking' => false,
|
||||
'public_shares_chunking' => true,
|
||||
'absence-supported' => true,
|
||||
'absence-replacement' => true,
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in a new issue