Ghost/ghost/admin/mirage/fixtures/tiers.js

34 lines
816 B
JavaScript
Raw Normal View History

/* eslint-disable camelcase */
export default [
{
id: '1',
active: true,
benefits: [],
createdAt: '2022-02-04T13:11:40.000Z',
description: null,
monthlyPrice: null,
name: 'Free',
slug: 'free',
type: 'free',
visibility: 'public',
updatedAt: '2022-02-04T13:34:53.000Z',
welcomePageUrl: null,
yearlyPrice: null
},
{
id: '2',
active: true,
benefits: [],
createdAt: '2022-02-04T13:11:40.000Z',
description: null,
monthlyPrice: null,
name: 'Default Tier',
slug: 'default-tier',
type: 'paid',
visibility: 'public',
updatedAt: '2022-02-04T13:11:40.000Z',
welcomePageUrl: null,
yearlyPrice: null
}
];