Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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';