summary refs log tree commit diff
path: root/rtc/src/models/Team.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-13 13:03:18 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-08-13 13:03:18 +0200
commita687b489d745c52e207637b6595edcb3eabe8f2d (patch)
tree98d45b035c2c9589d9702a9a2f442b62f9a3ab99 /rtc/src/models/Team.ts
parentFix naming (diff)
parentabstract Event emission (diff)
downloadserver-a687b489d745c52e207637b6595edcb3eabe8f2d.tar.xz
Merge branch 'master' into pr/darkhpp/261-2
Diffstat (limited to 'rtc/src/models/Team.ts')
-rw-r--r--rtc/src/models/Team.ts17
1 files changed, 0 insertions, 17 deletions
diff --git a/rtc/src/models/Team.ts b/rtc/src/models/Team.ts
deleted file mode 100644

index 795c82d2..00000000 --- a/rtc/src/models/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, -}