mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 07:09:48 +03:00
52b6668955
- remove lodash from bower - move all resources to /mirage instead of /app/mirage - update endpoints to use ORM - general cleanup
40 lines
966 B
JavaScript
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
|
|
}
|
|
];
|