mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
9 lines
236 B
TypeScript
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);
|
|
}
|