24 lines
590 B
JavaScript
24 lines
590 B
JavaScript
import Ember from 'ember';
|
|
|
|
export default Ember.Controller.extend({
|
|
actions: {
|
|
save: function() {
|
|
let strain = this.get('strain');
|
|
|
|
if (strain.get('hasDirtyAttributes')) {
|
|
strain.save().then((strain) => {
|
|
this.transitionToRoute('protected.strains.show', strain);
|
|
}, (err) => {
|
|
this.get('flashMessages').error(err.responseJSON.error);
|
|
});
|
|
} else {
|
|
this.transitionToRoute('protected.strains.index');
|
|
}
|
|
},
|
|
|
|
cancel: function() {
|
|
this.transitionToRoute('protected.strains.index');
|
|
},
|
|
|
|
},
|
|
});
|