Clean up delete transitions
This commit is contained in:
parent
f06fbd0305
commit
227a85bb01
6 changed files with 18 additions and 12 deletions
|
@ -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);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -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');
|
||||||
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -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');
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -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');
|
||||||
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -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);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -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');
|
||||||
|
});
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Reference in a new issue