You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

constants.js 510B

1234567891011121314151617181920212223242526
  1. // @flow
  2. /**
  3. * Example shared video link.
  4. * @type {string}
  5. */
  6. export const defaultSharedVideoLink = 'Youtube link or direct video link';
  7. /**
  8. * Fixed name of the video player fake participant.
  9. * @type {string}
  10. */
  11. export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
  12. /**
  13. * Fixed name of the youtube player fake participant.
  14. * @type {string}
  15. */
  16. export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
  17. /**
  18. * Shared video command.
  19. * @type {string}
  20. */
  21. export const SHARED_VIDEO = 'shared-video';