Ghost/ghost/admin/app/serializers/tier.js
Rishabh Garg 8b5b3aa734 Updated usage of the Tiers API (#2388)
refs https://github.com/TryGhost/Team/issues/1575

- Update usage of Tier to read monthly & yearly price & currency from top level
- Updated usage of Tier to read benefit name from benefits[n], not from benefits[n].name

Co-authored-by: Fabien "egg" O'Carroll <fabien@allou.is>
2022-05-16 19:51:49 +01:00

18 lines
437 B
JavaScript

import ApplicationSerializer from './application';
export default class TierSerializer extends ApplicationSerializer {
serialize() {
let json = super.serialize(...arguments);
if (json?.monthly_price) {
json.monthly_price = Math.round(json.monthly_price);
}
if (json?.yearly_price) {
json.yearly_price = Math.round(json.yearly_price);
}
return json;
}
}