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

123456789101112131415
  1. /**
  2. * The conference/room lock state which identifies that the password was set by
  3. * the current/local participant/user.
  4. *
  5. * @type {string}
  6. */
  7. export const LOCKED_LOCALLY = 'LOCKED_LOCALLY';
  8. /**
  9. * The conference/room lock state which identifies that the password was set by
  10. * a remote participant/user.
  11. *
  12. * @type {string}
  13. */
  14. export const LOCKED_REMOTELY = 'LOCKED_REMOTELY';