mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2026-05-14 22:37:46 +00:00
21 lines
407 B
JavaScript
21 lines
407 B
JavaScript
/**
|
|
* The command type for updating a participant's avatar ID.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const AVATAR_ID_COMMAND = 'avatar-id';
|
|
|
|
/**
|
|
* The command type for updating a participant's avatar URL.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const AVATAR_URL_COMMAND = 'avatar-url';
|
|
|
|
/**
|
|
* The command type for updating a participant's e-mail address.
|
|
*
|
|
* @type {string}
|
|
*/
|
|
export const EMAIL_COMMAND = 'email';
|