123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- namespace OCP\Teams;
- interface ITeamManager {
-
- public function getProviders(): array;
-
- public function getProvider(string $providerId): ITeamResourceProvider;
-
- public function getSharedWith(string $teamId, string $userId): array;
-
- public function getTeamsForResource(string $providerId, string $resourceId, string $userId): array;
- }
|