mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Removed archived tiers from portal tiers list
refs https://github.com/TryGhost/Team/issues/1404 The archived tiers are hidden in Portal normally as they are automatically not included in the `portal_products` list. This change also removes the archived tiers from being sent in list of tiers sent as part of site data to Portal. This ensures Portal doesn't use any archived tier.
This commit is contained in:
parent
01a6d576b3
commit
c9577cec71
1 changed files with 3 additions and 0 deletions
|
@ -110,9 +110,12 @@ const getPortalProductPrices = async function () {
|
|||
monthlyPrice: product.monthlyPrice,
|
||||
yearlyPrice: product.yearlyPrice,
|
||||
benefits: product.benefits,
|
||||
active: product.active,
|
||||
type: product.type,
|
||||
prices: productPrices
|
||||
};
|
||||
}).filter((product) => {
|
||||
return !!product.active;
|
||||
});
|
||||
const defaultProduct = products.find((product) => {
|
||||
return product.type === 'paid';
|
||||
|
|
Loading…
Add table
Reference in a new issue