Skip to content

Commit 787e453

Browse files
authored
Merge pull request #63996 from nextcloud/backport/63989/stable35
[stable35] fix: add missind interface functions
2 parents 70dd751 + 62bbac6 commit 787e453

1 file changed

Lines changed: 15 additions & 0 deletions

File tree

lib/public/Teams/ITeamFolderProvider.php

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,21 @@
2323
#[Consumable(since: '35.0.0')]
2424
#[Implementable(since: '35.0.0')]
2525
interface ITeamFolderProvider extends ITeamResourceProvider {
26+
27+
/**
28+
* Return the list of team folders that can be linked to the team.
29+
*
30+
* @since 35.0.0
31+
*/
32+
public function getLinkableTeamFolders(string $circleId): array;
33+
34+
/**
35+
* Link a team folder to the team.
36+
*
37+
* @since 35.0.0
38+
*/
39+
public function linkTeamFolder(string $circleId, int $folderId): TeamFolder;
40+
2641
/**
2742
* Return the folder exclusively linked to the team.
2843
*

0 commit comments

Comments
 (0)