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:
parent
d9f7e7ba16
commit
d82d86e600
1 changed files with 5 additions and 3 deletions
|
@ -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');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue