Ghost/ghost/admin/app/models/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

19 lines
587 B
JavaScript

import Model, {attr} from '@ember-data/model';
import ValidationEngine from 'ghost-admin/mixins/validation-engine';
export default Model.extend(ValidationEngine, {
validationType: 'tier',
name: attr('string'),
description: attr('string'),
active: attr('boolean'),
slug: attr('string'),
welcomePageURL: attr('string'),
visibility: attr('string', {defaultValue: 'none'}),
type: attr('string', {defaultValue: 'paid'}),
currency: attr('string'),
monthlyPrice: attr('number'),
yearlyPrice: attr('number'),
benefits: attr('tier-benefits')
});