Don't unload user models on delete

This commit is contained in:
Matthew Dillon 2015-12-02 11:43:58 -07:00
parent 8d4affd572
commit 3313b6e5f9

View file

@ -8,7 +8,10 @@ export default Mixin.create({
actions: {
delete: function() {
this.get('model').destroyRecord().then(() => {
this.get('store').unloadAll();
// 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'));
});
},