jiti-meet/react/features/presence-status/functions.ts

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);
}