Merge pull request #43816 from nextcloud/backport/43060/stable28

[stable28] fix: Allow to disable multipart copy on external s3 storage
backport/44075/stable28
Julius Härtl 2 months ago committed by GitHub
commit 82bcbce12c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -56,6 +56,9 @@ class AmazonS3 extends Backend {
->setType(DefinitionParameter::VALUE_BOOLEAN),
(new DefinitionParameter('legacy_auth', $l->t('Legacy (v2) authentication')))
->setType(DefinitionParameter::VALUE_BOOLEAN),
(new DefinitionParameter('useMultipartCopy', $l->t('Enable multipart copy')))
->setType(DefinitionParameter::VALUE_BOOLEAN)
->setDefaultValue(true),
])
->addAuthScheme(AccessKey::SCHEME_AMAZONS3_ACCESSKEY)
->addAuthScheme(AuthMechanism::SCHEME_NULL)

Loading…
Cancel
Save