This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/mixins/delete-model.js
2015-11-25 21:29:39 -07:00

16 lines
327 B
JavaScript

import Ember from 'ember';
const { Mixin } = Ember;
export default Mixin.create({
transitionRoute: null,
actions: {
delete: function() {
this.get('model').destroyRecord().then(() => {
this.get('store').unloadAll();
this.transitionToRoute(this.get('transitionRoute'));
});
},
},
});