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

24 lines
715 B
JavaScript

import moment from 'moment';
import {Factory} from 'miragejs';
export default Factory.extend({
name(i) { return `Integration ${i + 1}`;},
slug() { return this.name.toLowerCase().replace(' ', '-'); },
description: null,
iconImage: null,
type: 'custom',
createdAt() { return moment.utc().format(); },
createdBy: 1,
updatedAt() { return moment.utc().format(); },
updatedBy: 1,
afterCreate(integration, server) {
let contentKey = server.create('api-key', {type: 'content', integration});
let adminKey = server.create('api-key', {type: 'admin', integration});
integration.apiKeyIds = [contentKey.id, adminKey.id];
integration.save();
}
});