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/species/edit/controller.js
2015-07-06 11:02:41 -08:00

18 lines
489 B
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
save: function() {
let species = this.get('species');
if (species.get('isDirty')) {
species.save().then((species) => {
this.transitionToRoute('species.show', species.get('id'));
}, (err) => {
this.get('flashMessages').error(err.message);
});
} else {
this.transitionToRoute('species.show', species.get('id'));
}
},
}
});