Ghost/ghost/admin/mirage/fixtures/tiers.js
Hannah Wolfe affe6743e5 Renamed products to tiers (#2372)
refs: https://github.com/TryGhost/Team/issues/1145

- this should allow us to remove the /products endpoint in v5

It avoids:

- `kg-product-card`, that really is meant to say product
- `product-cadence` on offers

Co-authored-by: Rishabh <zrishabhgarg@gmail.com>
2022-05-11 22:41:54 +05:30

34 lines
816 B
JavaScript

/* 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
}
];