2017-09-11 10:41:17 +03:00
|
|
|
import ModalComponent from 'ghost-admin/components/modal-base';
|
2017-08-22 10:53:26 +03:00
|
|
|
import {alias} from '@ember/object/computed';
|
2017-01-19 14:40:31 +03:00
|
|
|
import {task} from 'ember-concurrency';
|
2016-05-08 16:15:04 +03:00
|
|
|
|
|
|
|
export default ModalComponent.extend({
|
2018-03-20 17:57:59 +03:00
|
|
|
// Allowed actions
|
|
|
|
confirm: () => {},
|
2016-05-08 16:15:04 +03:00
|
|
|
|
|
|
|
subscriber: alias('model'),
|
|
|
|
|
|
|
|
actions: {
|
|
|
|
confirm() {
|
2017-01-19 14:40:31 +03:00
|
|
|
this.get('deleteSubscriber').perform();
|
2016-05-08 16:15:04 +03:00
|
|
|
}
|
2018-01-11 20:43:23 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
deleteSubscriber: task(function* () {
|
2018-03-20 17:57:59 +03:00
|
|
|
yield this.confirm();
|
2018-01-11 20:43:23 +03:00
|
|
|
}).drop()
|
2016-05-08 16:15:04 +03:00
|
|
|
});
|