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 403B

123456789101112131415161718
  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. * The set of possible XMPP MUC roles for conference participants.
  10. *
  11. * @enum {string}
  12. */
  13. export const PARTICIPANT_ROLE = {
  14. MODERATOR: 'moderator',
  15. NONE: 'none',
  16. PARTICIPANT: 'participant'
  17. };