0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-03 23:00:14 -05:00
ghost/core/client/app/mirage/fixtures/roles.js
Kevin Ansfield 3d6856614f Use es6 across client and add ember-suave to enforce rules
no issue
- add ember-suave dependency
- upgrade grunt-jscs dependency
- add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc
- separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc
- standardize es6 usage across client
2015-11-30 10:41:01 +00:00

43 lines
1.2 KiB
JavaScript

/* jscs:disable requireCamelCaseOrUpperCaseIdentifiers */
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
}
];