mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-12 17:52:31 +00:00
* feat(lobby): lobby chat lobby chat support knocking participants list updates knocking participants conditonal checks to show message button handle lobby chat message events lobby messages from or to moderators only Co-authored-by: Fecri Kaan Ulubey <f.kaan93@gmail.com> * squash: Drop typos. Co-authored-by: Kusi Musah Hussein <kusimusah@gmail.com> Co-authored-by: Fecri Kaan Ulubey <f.kaan93@gmail.com> Co-authored-by: Дамян Минков <damencho@jitsi.org>
26 lines
663 B
JavaScript
26 lines
663 B
JavaScript
/**
|
|
* Hide these emails when trying to join a lobby.
|
|
*/
|
|
export const HIDDEN_EMAILS = [ 'inbound-sip-jibri@jitsi.net', 'outbound-sip-jibri@jitsi.net' ];
|
|
|
|
/**
|
|
* The identifier of the sound to be played when a participant joins lobby.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const KNOCKING_PARTICIPANT_SOUND_ID = 'KNOCKING_PARTICIPANT_SOUND';
|
|
|
|
/**
|
|
* Lobby chat initialized message type.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const LOBBY_CHAT_INITIALIZED = 'LOBBY_CHAT_INITIALIZED';
|
|
|
|
/**
|
|
* Event message sent to knocking participant when moderator in chat with leaves.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const MODERATOR_IN_CHAT_WITH_LEFT = 'MODERATOR_IN_CHAT_WITH_LEFT';
|