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.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. }