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