8b5b3aa734
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>
18 lines
437 B
JavaScript
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;
|
|
}
|
|
}
|