From 551edafba46c75abdacf89e5d8bdcb1cf251f053 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20Trill=C3=B2?= Date: Thu, 3 Sep 2026 11:03:19 +0200 Subject: [PATCH] fix: add missind interface functions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Tomasz Trillò --- lib/public/Teams/ITeamFolderProvider.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/lib/public/Teams/ITeamFolderProvider.php b/lib/public/Teams/ITeamFolderProvider.php index 4eb33fe33d819..116fa099a2bbc 100644 --- a/lib/public/Teams/ITeamFolderProvider.php +++ b/lib/public/Teams/ITeamFolderProvider.php @@ -23,6 +23,21 @@ #[Consumable(since: '35.0.0')] #[Implementable(since: '35.0.0')] interface ITeamFolderProvider extends ITeamResourceProvider { + + /** + * Return the list of team folders that can be linked to the team. + * + * @since 35.0.0 + */ + public function getLinkableTeamFolders(string $circleId): array; + + /** + * Link a team folder to the team. + * + * @since 35.0.0 + */ + public function linkTeamFolder(string $circleId, int $folderId): TeamFolder; + /** * Return the folder exclusively linked to the team. *