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>
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
import {Factory} from 'miragejs';
|
|
|
|
export default Factory.extend({
|
|
name(i) { return `Tier ${i}`; },
|
|
description(i) { return `Description for tier ${i}`; },
|
|
active: true,
|
|
slug(i) { return `tier-${i}`;},
|
|
type: 'paid',
|
|
visibility: 'none',
|
|
currency: 'usd',
|
|
monthly_price: 500,
|
|
yearly_price: 5000
|
|
});
|