mirror of
https://github.com/nextcloud/server.git
synced 2025-02-07 18:09:45 +00:00
bbc5d32c8e
`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>
23 lines
574 B
PHP
23 lines
574 B
PHP
<?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');
|
|
}
|
|
}
|