discourse-subscriptions/assets/javascripts/discourse/controllers/cancel-subscription.js.es6

13 lines
204 B
Plaintext
Raw Normal View History

2018-06-27 19:32:58 -04:00
export default Ember.Controller.extend({
actions: {
confirm() {
this.get('model.confirm')();
this.send('closeModal');
},
cancel() {
this.send('closeModal');
}
}
2018-09-22 00:03:30 -04:00
});