Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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