summary refs log tree commit diff
path: root/util/oldModels/Team.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-24 16:35:59 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-24 16:35:59 +0200
commit05d72ac3ac0c8d887942c783a2c93a1ad7a34d1b (patch)
tree3e861ba5c436e48658da913a55aabab37a868227 /util/oldModels/Team.ts
parent:white_check_mark: util unit tests (diff)
downloadserver-05d72ac3ac0c8d887942c783a2c93a1ad7a34d1b.tar.xz
:sparkles: util
Diffstat (limited to '')
-rw-r--r--util/oldModels/Team.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/util/oldModels/Team.ts b/util/oldModels/Team.ts
deleted file mode 100644

index 795c82d2..00000000 --- a/util/oldModels/Team.ts +++ /dev/null
@@ -1,17 +0,0 @@ -export interface Team { - icon: string | null; - id: string; - members: { - membership_state: number; - permissions: string[]; - team_id: string; - user_id: string; - }[]; - name: string; - owner_user_id: string; -} - -export enum TeamMemberState { - INVITED = 1, - ACCEPTED = 2, -}