Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

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