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

functions.ts 236B

12345678
  1. /**
  2. * Tells whether presence status should be displayed.
  3. *
  4. * @returns {boolean}
  5. */
  6. export function presenceStatusDisabled() {
  7. return Boolean(typeof interfaceConfig !== 'undefined' && interfaceConfig?.DISABLE_PRESENCE_STATUS);
  8. }