Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
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);
|
|
}
|