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-12-02 11:43:58 -07:00

19 lines
507 B
JavaScript

import Ember from 'ember';
const { Mixin } = Ember;
export default Mixin.create({
transitionRoute: null,
actions: {
delete: function() {
this.get('model').destroyRecord().then(() => {
// Instead of unloading the entire store, we keep the loaded user models
['species', 'strain', 'characteristic', 'measurement'].map((model) => {
this.get('store').unloadAll(model);
});
this.transitionToRoute(this.get('transitionRoute'));
});
},
},
});