(entitlement: Entitlement)
| 32 | } |
| 33 | |
| 34 | export const hasEntitlement = async (entitlement: Entitlement) => { |
| 35 | const license = await getSingleTenantLicense(); |
| 36 | return _hasEntitlement(entitlement, license); |
| 37 | } |
| 38 | |
| 39 | export const isAnonymousAccessAvailable = async () => { |
| 40 | const license = await getSingleTenantLicense(); |
no outgoing calls
no test coverage detected