diff options
author | Julius Härtl <jus@bitgrid.net> | 2024-02-26 16:30:16 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2024-03-05 08:13:58 +0100 |
commit | c7813bfdaf09626dfed13c63b28a3919018d4403 (patch) | |
tree | 07d8c13bd7b3628e88f606bbf56db40bfc96e227 /core/ResponseDefinitions.php | |
parent | 2c9761c73ad1ea51f13103819637fbd315806761 (diff) | |
download | nextcloud-server-c7813bfdaf09626dfed13c63b28a3919018d4403.tar.gz nextcloud-server-c7813bfdaf09626dfed13c63b28a3919018d4403.zip |
feat: Implement team provider api
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core/ResponseDefinitions.php')
-rw-r--r-- | core/ResponseDefinitions.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/core/ResponseDefinitions.php b/core/ResponseDefinitions.php index b8f73bcdcda..4a79c3ad3ec 100644 --- a/core/ResponseDefinitions.php +++ b/core/ResponseDefinitions.php @@ -161,6 +161,21 @@ namespace OCA\Core; * numberOfImages: int, * completionExpectedAt: ?int, * } + * + * @psalm-type CoreTeam = array{ + * id: string, + * name: string, + * icon: string, + * } + * + * @psalm-type CoreTeamResource = array{ + * id: int, + * label: string, + * url: string, + * iconSvg: ?string, + * iconURL: ?string, + * iconEmoji: ?string, + * } */ class ResponseDefinitions { } |