mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 19:48:50 +03:00
24 lines
723 B
JavaScript
24 lines
723 B
JavaScript
import moment from 'moment';
|
|
import {Factory} from 'ember-cli-mirage';
|
|
|
|
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();
|
|
}
|
|
});
|