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

functions.js 241B

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(interfaceConfig?.DISABLE_PRESENCE_STATUS);
  10. }