Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

constants.ts 521B

123456789101112131415161718192021222324252627282930
  1. /**
  2. * Fixed name of the video player fake participant.
  3. *
  4. * @type {string}
  5. */
  6. export const VIDEO_PLAYER_PARTICIPANT_NAME = 'Video';
  7. /**
  8. * Fixed name of the youtube player fake participant.
  9. *
  10. * @type {string}
  11. */
  12. export const YOUTUBE_PLAYER_PARTICIPANT_NAME = 'YouTube';
  13. /**
  14. * Shared video command.
  15. *
  16. * @type {string}
  17. */
  18. export const SHARED_VIDEO = 'shared-video';
  19. /**
  20. * Available playback statuses.
  21. */
  22. export const PLAYBACK_STATUSES = {
  23. PLAYING: 'playing',
  24. PAUSED: 'pause',
  25. STOPPED: 'stop'
  26. };