0
Fork 0
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:
Rishabh 2022-03-04 15:04:28 +05:30
parent 01a6d576b3
commit c9577cec71

View file

@ -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';