Files
jitsi-meet/react/features/presence-status/functions.ts
2022-10-28 11:53:24 +03:00

9 lines
236 B
TypeScript

/**
* Tells whether presence status should be displayed.
*
* @returns {boolean}
*/
export function presenceStatusDisabled() {
return Boolean(typeof interfaceConfig !== 'undefined' && interfaceConfig?.DISABLE_PRESENCE_STATUS);
}