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/show/controller.js
2015-11-03 09:22:04 -07:00

14 lines
271 B
JavaScript

import Ember from 'ember';
const { Controller } = Ember;
export default Controller.extend({
actions: {
delete: function() {
this.get('model').destroyRecord().then(() => {
this.transitionToRoute('protected.species.index');
});
},
},
});