mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
new WS events.
This commit is contained in:
parent
3df2c028cd
commit
11a843af0f
@ -6,9 +6,13 @@ export const SIGNAL_REQUEST = 'signal/request'
|
||||
export const SIGNAL_ANSWER = 'signal/answer'
|
||||
export const SIGNAL_PROVIDE = 'signal/provide'
|
||||
|
||||
export const MEMBER_CREATED = 'member/created'
|
||||
export const MEMBER_DELETED = 'member/deleted'
|
||||
export const MEMBER_CONNECTED = 'member/connected'
|
||||
export const MEMBER_UPDATED = 'member/updated' // TODO: New.
|
||||
export const MEMBER_DISCONNECTED = 'member/disconnected'
|
||||
export const MEMBER_RECEIVING_STARTED = 'member/receiving/started'
|
||||
export const MEMBER_RECEIVING_STOPPED = 'member/receiving/stopped'
|
||||
export const MEMBER_PROFILE_UPDATED = 'member/profile/updated'
|
||||
|
||||
export const CONTROL_HOST = 'control/host'
|
||||
export const CONTROL_RELEASE = 'control/release'
|
||||
|
@ -54,6 +54,7 @@ export interface MemberID {
|
||||
}
|
||||
|
||||
export interface MemberProfile {
|
||||
id: string
|
||||
name: string
|
||||
is_admin: boolean
|
||||
can_login: boolean
|
||||
|
Loading…
Reference in New Issue
Block a user