Ghost/ghost/admin/mirage/fixtures/roles.js
Austin Burdine 5abc4e0d9b Bump ember-cli-mirage to 0.4.2 (#969)
closes TryGhost/Ghost#9433
- remove unnecessary bower deps
- update mirage usage
- fix tests
2018-03-19 09:53:17 +00:00

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
}
];