Ghost/ghost/admin/mirage/factories/role.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

11 lines
258 B
JavaScript

import {Factory} from 'ember-cli-mirage';
export default Factory.extend({
createdAt: '2013-11-25T14:48:11.000Z',
createdBy: 1,
description(i) { return `Role ${i}`; },
name: '',
updatedAt: '2013-11-25T14:48:11.000Z',
updatedBy: 1
});