Easiest to just unload the entire store

Fixes #66
This commit is contained in:
Matthew Dillon 2015-11-25 21:29:39 -07:00
parent f93c4af029
commit 1c16c7239f

View file

@ -8,6 +8,7 @@ export default Mixin.create({
actions: { actions: {
delete: function() { delete: function() {
this.get('model').destroyRecord().then(() => { this.get('model').destroyRecord().then(() => {
this.get('store').unloadAll();
this.transitionToRoute(this.get('transitionRoute')); this.transitionToRoute(this.get('transitionRoute'));
}); });
}, },