您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

constants.js 293B

123456789101112
  1. /**
  2. * The room lock state where the password was set by the current user.
  3. *
  4. * @type {string}
  5. */
  6. export const LOCKED_LOCALLY = 'LOCKED_LOCALLY';
  7. /**
  8. * The room lock state where the password was set by a remote user.
  9. * @type {string}
  10. */
  11. export const LOCKED_REMOTELY = 'LOCKED_REMOTELY';