Ghost/ghost/admin/mirage/fixtures/roles.js
Austin Burdine 52b6668955 deps: ember-cli-mirage@0.2.0
- remove lodash from bower
- move all resources to /mirage instead of /app/mirage
- update endpoints to use ORM
- general cleanup
2017-01-13 15:59:37 +00:00

40 lines
966 B
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
}
];