DeleteModel Mixin
This commit is contained in:
parent
cc85ee6f27
commit
3f5eb26a33
3 changed files with 31 additions and 9 deletions
15
app/mixins/delete-model.js
Normal file
15
app/mixins/delete-model.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
const { Mixin } = Ember;
|
||||
|
||||
export default Mixin.create({
|
||||
transitionRoute: null,
|
||||
|
||||
actions: {
|
||||
delete: function() {
|
||||
this.get('model').destroyRecord().then(() => {
|
||||
this.transitionToRoute(this.get('transitionRoute'));
|
||||
});
|
||||
},
|
||||
},
|
||||
});
|
Reference in a new issue