Ghost/ghost/admin/mirage/factories/role.js
Kevin Ansfield c4c48d4104 Resolved ember-cli-mirage import deprecations
refs https://github.com/TryGhost/Admin/pull/2209

- `miragejs` has been extracted to a framework-independent library, the re-exports of `miragejs` elements in `ember-cli-mirage` have been deprecated making our test logs very noisy
- added `miragejs` as a top-level dependency
- updated all relevant imports to pull from `miragejs` instead of `ember-cli-mirage`
2022-03-08 11:32:01 +00:00

11 lines
250 B
JavaScript

import {Factory} from 'miragejs';
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
});