Ghost/ghost/admin/app/components/modal-delete-integration.js
Peter Zimon e5b6db173c Removed obsolete integration files
- removed unused integration files (was restructured under Settings / integrations)
- removed unused routes
2021-11-05 13:42:38 +01:00

27 lines
801 B
JavaScript

import ModalComponent from 'ghost-admin/components/modal-base';
import {alias} from '@ember/object/computed';
import {inject as service} from '@ember/service';
import {task} from 'ember-concurrency';
export default ModalComponent.extend({
router: service(),
feature: service(),
notifications: service(),
integration: alias('model'),
actions: {
confirm() {
this.deleteIntegration.perform();
}
},
deleteIntegration: task(function* () {
try {
yield this.confirm();
this.router.transitionTo('settings.integrations');
} catch (error) {
this.notifications.showAPIError(error, {key: 'integration.delete.failed'});
} finally {
this.send('closeModal');
}
}).drop()
});