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

34 lines
822 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 Product',
slug: 'default-product',
type: 'paid',
visibility: 'public',
updatedAt: '2022-02-04T13:11:40.000Z',
welcomePageUrl: null,
yearlyPrice: null
}
];