mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 16:42:17 +03:00
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>
19 lines
587 B
JavaScript
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')
|
|
});
|