mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 17:32:15 +03:00
675a1221fa
refs #6039 - add `jquery-deparam` ember testing dependency for use in mirage config - setup necessary mirage fixtures & endpoints for successful testing of setup flow's happy-path - add happy-path acceptance test for setup flow
43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
export default [
|
|
{
|
|
id: 1,
|
|
uuid: 'b2576c4e-fa4e-41d4-8236-ced75f735222',
|
|
name: 'Administrator',
|
|
description: 'Administrators',
|
|
created_at: '2015-11-13T16:01:29.131Z',
|
|
created_by: 1,
|
|
updated_at: '2015-11-13T16:01:29.131Z',
|
|
updated_by: 1
|
|
},
|
|
{
|
|
id: 2,
|
|
uuid: '6ee03efb-322e-4f6e-9c91-bc228b5eec6b',
|
|
name: 'Editor',
|
|
description: 'Editors',
|
|
created_at: '2015-11-13T16:01:29.131Z',
|
|
created_by: 1,
|
|
updated_at: '2015-11-13T16:01:29.131Z',
|
|
updated_by: 1
|
|
},
|
|
{
|
|
id: 3,
|
|
uuid: 'de481b62-63f8-42c7-b5b9-6c5f5a877f53',
|
|
name: 'Author',
|
|
description: 'Authors',
|
|
created_at: '2015-11-13T16:01:29.131Z',
|
|
created_by: 1,
|
|
updated_at: '2015-11-13T16:01:29.131Z',
|
|
updated_by: 1
|
|
},
|
|
{
|
|
id: 4,
|
|
uuid: 'ac8cbaf6-e6be-4129-b0fb-ec9ddfa61056',
|
|
name: 'Owner',
|
|
description: 'Blog Owner',
|
|
created_at: '2015-11-13T16:01:29.132Z',
|
|
created_by: 1,
|
|
updated_at: '2015-11-13T16:01:29.132Z',
|
|
updated_by: 1
|
|
}
|
|
];
|