mirror of
https://github.com/nextcloud/server.git
synced 2026-03-13 22:22:25 -04:00
This patchset: * implements the /invite-accepted endpoint * adds capabilities and inviteAceptDialog to the discovery * adds a FederatedInviteAcceptedEvent https://cs3org.github.io/OCM-API/docs.html?branch=v1.1.0&repo=OCM-API&user=cs3org#/paths/~1invite-accepted/post Co-authored-by: Anna <anna@nextcloud.com> Co-authored-by: Côme Chilliet <come.chilliet@nextcloud.com> Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com> Co-authored-by: Navid Shokri <navid.pdp11@gmail.com> Signed-off-by: Micke Nordin <kano@sunet.se>
60 lines
1.1 KiB
PHP
60 lines
1.1 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\OCM;
|
|
|
|
/**
|
|
* Version 1.1 and 1.2 extensions to the Open Cloud Mesh Discovery API
|
|
* @link https://github.com/cs3org/OCM-API/
|
|
* @since 32.0.0
|
|
*/
|
|
interface ICapabilityAwareOCMProvider extends IOCMProvider {
|
|
/**
|
|
* get the capabilities
|
|
*
|
|
* @return array
|
|
* @since 32.0.0
|
|
*/
|
|
public function getCapabilities(): array;
|
|
|
|
/**
|
|
* get the provider name
|
|
*
|
|
* @return string
|
|
* @since 32.0.0
|
|
*/
|
|
public function getProvider(): string;
|
|
|
|
/**
|
|
* returns the invite accept dialog
|
|
*
|
|
* @return string
|
|
* @since 32.0.0
|
|
*/
|
|
public function getInviteAcceptDialog(): string;
|
|
|
|
/**
|
|
* set the capabilities
|
|
*
|
|
* @param array $capabilities
|
|
*
|
|
* @return $this
|
|
* @since 32.0.0
|
|
*/
|
|
public function setCapabilities(array $capabilities): static;
|
|
|
|
/**
|
|
* set the invite accept dialog
|
|
*
|
|
* @param string $inviteAcceptDialog
|
|
*
|
|
* @return $this
|
|
* @since 32.0.0
|
|
*/
|
|
public function setInviteAcceptDialog(string $inviteAcceptDialog): static;
|
|
}
|