您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.ts 903B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. };
  27. /**
  28. * Playback start state.
  29. */
  30. export const PLAYBACK_START = 'start';
  31. /**
  32. * The domain for youtube URLs.
  33. */
  34. export const YOUTUBE_URL_DOMAIN = 'youtube.com';
  35. /**
  36. * The constant to allow URL domains.
  37. */
  38. export const ALLOW_ALL_URL_DOMAINS = '*';
  39. /**
  40. * The default white listed domains for shared video.
  41. */
  42. export const DEFAULT_ALLOWED_URL_DOMAINS = [ YOUTUBE_URL_DOMAIN ];