Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

functions.js 283B

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(typeof interfaceConfig !== 'undefined' && interfaceConfig?.DISABLE_PRESENCE_STATUS);
  10. }