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>
21 lines
498 B
PHP
21 lines
498 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
use Behat\Behat\Context\Context;
|
|
use Behat\Behat\Context\SnippetAcceptingContext;
|
|
|
|
require __DIR__ . '/../../vendor/autoload.php';
|
|
|
|
/**
|
|
* Features context.
|
|
*/
|
|
class FeatureContext implements Context, SnippetAcceptingContext {
|
|
use ContactsMenu;
|
|
use ExternalStorage;
|
|
use Search;
|
|
use WebDav;
|
|
use Trashbin;
|
|
}
|