Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

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