You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

functions.js 284B

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