20 lines
367 B
JavaScript
20 lines
367 B
JavaScript
// @flow
|
|
|
|
/**
|
|
* Example shared video link.
|
|
* @type {string}
|
|
*/
|
|
export const defaultSharedVideoLink = 'https://youtu.be/TB7LlM4erx8';
|
|
|
|
/**
|
|
* Fixed name of the video player fake participant.
|
|
* @type {string}
|
|
*/
|
|
export const VIDEO_PLAYER_PARTICIPANT_NAME = 'YouTube';
|
|
|
|
/**
|
|
* Shared video command.
|
|
* @type {string}
|
|
*/
|
|
export const SHARED_VIDEO = 'shared-video';
|