0
0
Fork 0
mirror of https://github.com/nextcloud/server.git synced 2025-02-11 11:39:27 +00:00
nextcloud_server/apps/dav/lib/CalDAV/Auth/CustomPrincipalPlugin.php
Andy Scherzinger 9d4b944098
chore: Add SPDX header
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
2024-05-27 20:11:22 +02:00

21 lines
470 B
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\DAV\CalDAV\Auth;
use Sabre\DAV\Auth\Plugin;
/**
* Set a custom principal uri to allow public requests to its calendar
*/
class CustomPrincipalPlugin extends Plugin {
public function setCurrentPrincipal(?string $currentPrincipal): void {
$this->currentPrincipal = $currentPrincipal;
}
}