RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/hooks/omnichannel/useOmnichannelEnterpriseEnabled.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { useOmnichannel } from './useOmnichannel';

export const useOmnichannelEnterpriseEnabled = (): boolean => {
    const { enabled: isEnabled, isEnterprise } = useOmnichannel();
    return isEnabled && isEnterprise;
};