mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
34 lines
822 B
JavaScript
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
|
|
}
|
|
];
|