This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
hymenobacterdotinfo/app/pods/protected/species/edit/controller.js
2015-10-14 10:27:18 -07:00

30 lines
779 B
JavaScript

import Ember from 'ember';
import ajaxError from '../../../../utils/ajax-error';
export default Ember.Controller.extend({
actions: {
save: function() {
let species = this.get('model');
if (species.get('hasDirtyAttributes')) {
species.save().then((species) => {
this.transitionToRoute('protected.species.show', species);
}, () => {
ajaxError(species.get('errors'), this.get('flashMessages'));
});
} else {
this.transitionToRoute('protected.species.show', species);
}
},
cancel: function() {
let species = this.get('model');
species.get('errors').clear();
species.rollbackAttributes();
this.transitionToRoute('protected.species.show', species);
},
},
});