new WS events.

This commit is contained in:
Miroslav Šedivý 2020-12-02 19:21:25 +01:00
parent 3df2c028cd
commit 11a843af0f
2 changed files with 6 additions and 1 deletions

View File

@ -6,9 +6,13 @@ export const SIGNAL_REQUEST = 'signal/request'
export const SIGNAL_ANSWER = 'signal/answer' export const SIGNAL_ANSWER = 'signal/answer'
export const SIGNAL_PROVIDE = 'signal/provide' 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_CONNECTED = 'member/connected'
export const MEMBER_UPDATED = 'member/updated' // TODO: New.
export const MEMBER_DISCONNECTED = 'member/disconnected' 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_HOST = 'control/host'
export const CONTROL_RELEASE = 'control/release' export const CONTROL_RELEASE = 'control/release'

View File

@ -54,6 +54,7 @@ export interface MemberID {
} }
export interface MemberProfile { export interface MemberProfile {
id: string
name: string name: string
is_admin: boolean is_admin: boolean
can_login: boolean can_login: boolean