`GET` should be allowed even without Ajax header to allow downloading files, or show files in the viewer. All other requests could be guarded, but this should not. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>pull/48628/head
parent
3d74ed3762
commit
bbc5d32c8e
@ -0,0 +1,23 @@ |
||||
<?php |
||||
/** |
||||
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors |
||||
* SPDX-License-Identifier: AGPL-3.0-or-later |
||||
*/ |
||||
|
||||
use Behat\Behat\Context\Context; |
||||
use Behat\Behat\Context\SnippetAcceptingContext; |
||||
|
||||
require __DIR__ . '/../../vendor/autoload.php'; |
||||
|
||||
class DavFeatureContext implements Context, SnippetAcceptingContext { |
||||
use AppConfiguration; |
||||
use ContactsMenu; |
||||
use ExternalStorage; |
||||
use Search; |
||||
use WebDav; |
||||
use Trashbin; |
||||
|
||||
protected function resetAppConfigs() { |
||||
$this->deleteServerConfig('files_sharing', 'outgoing_server2server_share_enabled'); |
||||
} |
||||
} |
Loading…
Reference in new issue