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

functions.js 241B

123456789101112
  1. // @flow
  2. declare var interfaceConfig: Object;
  3. /**
  4. * Tells wether presence status should be displayed.
  5. *
  6. * @returns {boolean}
  7. */
  8. export function presenceStatusDisabled() {
  9. return Boolean(interfaceConfig?.DISABLE_PRESENCE_STATUS);
  10. }