DS deprecation (rollback)
This commit is contained in:
parent
56c0e92fe6
commit
2ae0523a9f
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ export default Ember.Controller.extend({
|
||||||
let species = this.get('model');
|
let species = this.get('model');
|
||||||
|
|
||||||
species.get('errors').clear();
|
species.get('errors').clear();
|
||||||
species.rollback();
|
species.rollbackAttributes();
|
||||||
|
|
||||||
this.transitionToRoute('protected.species.show', species);
|
this.transitionToRoute('protected.species.show', species);
|
||||||
},
|
},
|
||||||
|
|
|
@ -21,7 +21,7 @@ export default Ember.Controller.extend({
|
||||||
let strain = this.get('strain');
|
let strain = this.get('strain');
|
||||||
|
|
||||||
strain.get('errors').clear();
|
strain.get('errors').clear();
|
||||||
strain.rollback();
|
strain.rollbackAttributes();
|
||||||
|
|
||||||
this.transitionToRoute('protected.strains.show', strain);
|
this.transitionToRoute('protected.strains.show', strain);
|
||||||
},
|
},
|
||||||
|
|
Reference in a new issue