0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Handled missing free tier for portal plans

refs https://github.com/TryGhost/Team/issues/1387

Free tier is only passed to portal when tiers flag is enabled.
This commit is contained in:
Rishabh 2022-03-08 14:36:15 +05:30
parent d9f7e7ba16
commit d82d86e600

View file

@ -206,9 +206,11 @@ export function transformApiSiteData({site}) {
// Map free tier visibility to portal plans
const freeProduct = site.products.find(p => p.type === 'free');
site.portal_plans = site.portal_plans?.filter(d => d !== 'free');
if (freeProduct.visibility === 'public') {
site.portal_plans?.push('free');
if (freeProduct) {
site.portal_plans = site.portal_plans?.filter(d => d !== 'free');
if (freeProduct?.visibility === 'public') {
site.portal_plans?.push('free');
}
}
}