5abc4e0d9b
closes TryGhost/Ghost#9433 - remove unnecessary bower deps - update mirage usage - fix tests
49 lines
1.2 KiB
JavaScript
49 lines
1.2 KiB
JavaScript
/* eslint-disable camelcase */
|
|
export default [
|
|
{
|
|
id: 1,
|
|
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,
|
|
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,
|
|
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,
|
|
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
|
|
},
|
|
{
|
|
id: 5,
|
|
name: 'Contributor',
|
|
description: 'Contributors',
|
|
created_at: '2015-11-13T16:01:29.132Z',
|
|
created_by: 1,
|
|
updated_at: '2015-11-13T16:01:29.132Z',
|
|
updated_by: 1
|
|
}
|
|
];
|