mirror of
https://github.com/nextcloud/server.git
synced 2025-02-06 01:20:16 +00:00
9836e9b164
Signed-off-by: provokateurin <kate@provokateurin.de>
21 lines
472 B
PHP
21 lines
472 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\DAV\CardDAV\Sharing;
|
|
|
|
use OCA\DAV\DAV\Sharing\SharingMapper;
|
|
use OCA\DAV\DAV\Sharing\SharingService;
|
|
|
|
class Service extends SharingService {
|
|
protected string $resourceType = 'addressbook';
|
|
public function __construct(
|
|
protected SharingMapper $mapper,
|
|
) {
|
|
parent::__construct($mapper);
|
|
}
|
|
}
|