parent
6ab7e66d03
commit
6dbdd70d31
8 changed files with 27 additions and 17 deletions
|
@ -13,7 +13,7 @@ export default Ember.Controller.extend({
|
|||
ajaxError(characteristic.get('errors'), this.get('flashMessages'));
|
||||
});
|
||||
} else {
|
||||
characteristic.deleteRecord().then(() => {
|
||||
characteristic.destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.characteristics.show', characteristic);
|
||||
});
|
||||
}
|
||||
|
|
|
@ -13,12 +13,16 @@ export default Ember.Controller.extend({
|
|||
ajaxError(characteristic.get('errors'), this.get('flashMessages'));
|
||||
});
|
||||
} else {
|
||||
this.transitionToRoute('protected.characteristics.index');
|
||||
characteristic.destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.characteristics.index');
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
cancel: function() {
|
||||
this.transitionToRoute('protected.characteristics.index');
|
||||
this.get('model').destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.characteristics.index');
|
||||
});
|
||||
},
|
||||
|
||||
},
|
||||
|
|
|
@ -18,11 +18,11 @@ export default Ember.Route.extend({
|
|||
|
||||
actions: {
|
||||
willTransition: function(/*transition*/) {
|
||||
let controller = this.get('controller');
|
||||
let characteristic = controller.get('model');
|
||||
const controller = this.get('controller');
|
||||
const characteristic = controller.get('model');
|
||||
|
||||
if (characteristic.get('isNew')) {
|
||||
characteristic.deleteRecord();
|
||||
characteristic.destroyRecord();
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
|
@ -13,14 +13,16 @@ export default Ember.Controller.extend({
|
|||
ajaxError(species.get('errors'), this.get('flashMessages'));
|
||||
});
|
||||
} else {
|
||||
species.deleteRecord().then(() => {
|
||||
species.destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.species.index');
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
cancel: function() {
|
||||
this.transitionToRoute('protected.species.index');
|
||||
this.get('model').destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.species.index');
|
||||
});
|
||||
},
|
||||
|
||||
},
|
||||
|
|
|
@ -18,11 +18,11 @@ export default Ember.Route.extend({
|
|||
|
||||
actions: {
|
||||
willTransition: function(/*transition*/) {
|
||||
let controller = this.get('controller');
|
||||
let species = controller.get('model');
|
||||
const controller = this.get('controller');
|
||||
const species = controller.get('model');
|
||||
|
||||
if (species.get('isNew')) {
|
||||
species.deleteRecord();
|
||||
species.destroyRecord();
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
|
@ -13,7 +13,7 @@ export default Ember.Controller.extend({
|
|||
ajaxError(strain.get('errors'), this.get('flashMessages'));
|
||||
});
|
||||
} else {
|
||||
strain.deleteRecord().then(() => {
|
||||
strain.destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.strains.show', strain);
|
||||
});
|
||||
}
|
||||
|
|
|
@ -13,12 +13,16 @@ export default Ember.Controller.extend({
|
|||
ajaxError(strain.get('errors'), this.get('flashMessages'));
|
||||
});
|
||||
} else {
|
||||
this.transitionToRoute('protected.strains.index');
|
||||
strain.destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.strains.index');
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
cancel: function() {
|
||||
this.transitionToRoute('protected.strains.index');
|
||||
this.get('strain').destroyRecord().then(() => {
|
||||
this.transitionToRoute('protected.strains.index');
|
||||
});
|
||||
},
|
||||
|
||||
},
|
||||
|
|
|
@ -25,11 +25,11 @@ export default Ember.Route.extend({
|
|||
|
||||
actions: {
|
||||
willTransition: function(/*transition*/) {
|
||||
let controller = this.get('controller');
|
||||
let strain = controller.get('strain');
|
||||
const controller = this.get('controller');
|
||||
const strain = controller.get('strain');
|
||||
|
||||
if (strain.get('isNew')) {
|
||||
strain.deleteRecord();
|
||||
strain.destroyRecord();
|
||||
}
|
||||
},
|
||||
},
|
||||
|
|
Reference in a new issue