mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-28 05:14:12 +03:00
25 lines
583 B
JavaScript
25 lines
583 B
JavaScript
|
/* eslint-disable camelcase */
|
||
|
export default [
|
||
|
{
|
||
|
id: 1,
|
||
|
name: 'Test Product',
|
||
|
slug: 'test-product',
|
||
|
monthly_price: {
|
||
|
interval: 'month',
|
||
|
nickname: 'Monthly',
|
||
|
currency: 'usd',
|
||
|
amount: 500
|
||
|
},
|
||
|
yearly_price: {
|
||
|
interval: 'year',
|
||
|
nickname: 'Yearly',
|
||
|
currency: 'usd',
|
||
|
amount: 5000
|
||
|
},
|
||
|
created_at: '2015-11-13T16:01:29.131Z',
|
||
|
created_by: 1,
|
||
|
updated_at: '2015-11-13T16:01:29.131Z',
|
||
|
updated_by: 1
|
||
|
}
|
||
|
];
|