DS deprecation (rollback)

This commit is contained in:
Matthew Dillon 2015-08-24 15:25:42 -07:00
parent 56c0e92fe6
commit 2ae0523a9f
2 changed files with 2 additions and 2 deletions

View file

@ -20,7 +20,7 @@ export default Ember.Controller.extend({
let species = this.get('model');
species.get('errors').clear();
species.rollback();
species.rollbackAttributes();
this.transitionToRoute('protected.species.show', species);
},

View file

@ -21,7 +21,7 @@ export default Ember.Controller.extend({
let strain = this.get('strain');
strain.get('errors').clear();
strain.rollback();
strain.rollbackAttributes();
this.transitionToRoute('protected.strains.show', strain);
},