mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
25 lines
504 B
PHP
25 lines
504 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH
|
|
* SPDX-FileContributor: Carl Schwan
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCP\AppFramework\Http\Attribute;
|
|
|
|
use Attribute;
|
|
use OCP\AppFramework\Attribute\Consumable;
|
|
|
|
/**
|
|
* Attribute for controller methods that want to disable the same site cookies
|
|
* requirements.
|
|
*
|
|
* @since 34.0.0
|
|
*/
|
|
#[Attribute(Attribute::TARGET_METHOD)]
|
|
#[Consumable(since: '34.0.0')]
|
|
class NoSameSiteCookieRequired {
|
|
}
|