選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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