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

constants.js 512B

12345678910111213141516171819202122232425
  1. /**
  2. * Local participant might not have real ID until he joins a conference,
  3. * so use 'local' as its default ID.
  4. *
  5. * @type {string}
  6. */
  7. export const LOCAL_PARTICIPANT_DEFAULT_ID = 'local';
  8. /**
  9. * Max length of the display names.
  10. *
  11. * @type {string}
  12. */
  13. export const MAX_DISPLAY_NAME_LENGTH = 50;
  14. /**
  15. * The set of possible XMPP MUC roles for conference participants.
  16. *
  17. * @enum {string}
  18. */
  19. export const PARTICIPANT_ROLE = {
  20. MODERATOR: 'moderator',
  21. NONE: 'none',
  22. PARTICIPANT: 'participant'
  23. };