Clean up delete transitions

This commit is contained in:
Matthew Ryan Dillon 2015-10-20 16:12:35 -07:00
parent f06fbd0305
commit 227a85bb01
6 changed files with 18 additions and 12 deletions

View file

@ -13,8 +13,9 @@ export default Ember.Controller.extend({
ajaxError(characteristic.get('errors'), this.get('flashMessages')); ajaxError(characteristic.get('errors'), this.get('flashMessages'));
}); });
} else { } else {
characteristic.deleteRecord(); characteristic.deleteRecord().then(() => {
this.transitionToRoute('protected.characteristics.show', characteristic); this.transitionToRoute('protected.characteristics.show', characteristic);
});
} }
}, },

View file

@ -3,8 +3,9 @@ import Ember from 'ember';
export default Ember.Controller.extend({ export default Ember.Controller.extend({
actions: { actions: {
delete: function() { delete: function() {
this.get('model').destroyRecord(); this.get('model').destroyRecord().then(() => {
this.transitionToRoute('protected.characteristics.index'); this.transitionToRoute('protected.characteristics.index');
});
}, },
}, },

View file

@ -13,8 +13,9 @@ export default Ember.Controller.extend({
ajaxError(species.get('errors'), this.get('flashMessages')); ajaxError(species.get('errors'), this.get('flashMessages'));
}); });
} else { } else {
species.deleteRecord(); species.deleteRecord().then(() => {
this.transitionToRoute('protected.species.index'); this.transitionToRoute('protected.species.index');
});
} }
}, },

View file

@ -3,8 +3,9 @@ import Ember from 'ember';
export default Ember.Controller.extend({ export default Ember.Controller.extend({
actions: { actions: {
delete: function() { delete: function() {
this.get('model').destroyRecord(); this.get('model').destroyRecord().then(() => {
this.transitionToRoute('protected.species.index'); this.transitionToRoute('protected.species.index');
});
}, },
}, },

View file

@ -13,8 +13,9 @@ export default Ember.Controller.extend({
ajaxError(strain.get('errors'), this.get('flashMessages')); ajaxError(strain.get('errors'), this.get('flashMessages'));
}); });
} else { } else {
strain.deleteRecord(); strain.deleteRecord().then(() => {
this.transitionToRoute('protected.strains.show', strain); this.transitionToRoute('protected.strains.show', strain);
});
} }
}, },

View file

@ -3,8 +3,9 @@ import Ember from 'ember';
export default Ember.Controller.extend({ export default Ember.Controller.extend({
actions: { actions: {
delete: function() { delete: function() {
this.get('model').destroyRecord(); this.get('model').destroyRecord().then(() => {
this.transitionToRoute('protected.strains.index'); this.transitionToRoute('protected.strains.index');
});
}, },
}, },