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/strains/edit/controller.js
2015-07-08 14:44:56 -08:00

30 lines
696 B
JavaScript

import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
save: function() {
let strain = this.get('strain');
if (strain.get('isDirty')) {
strain.save().then((strain) => {
this.transitionToRoute('strains.show', strain);
}, (err) => {
this.get('flashMessages').error(err.responseJSON.error);
});
} else {
strain.deleteRecord();
this.transitionToRoute('strains.show', strain);
}
},
cancel: function() {
let strain = this.get('strain');
strain.get('errors').clear();
strain.rollback();
this.transitionToRoute('strains.show', strain);
},
},
});