Delete species

This commit is contained in:
Matthew Dillon 2015-10-12 10:41:07 -07:00
parent a1e4e03b89
commit bf8289436f
2 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import Ember from 'ember';
export default Ember.Controller.extend({
actions: {
delete: function() {
this.get('model').destroyRecord();
this.transitionToRoute('protected.species.index');
},
},
});

View file

@ -62,4 +62,5 @@
{{#link-to 'protected.species.edit' model class="button-gray smaller"}} {{#link-to 'protected.species.edit' model class="button-gray smaller"}}
Edit Edit
{{/link-to}} {{/link-to}}
{{delete-button delete=(action 'delete')}}
{{/if}} {{/if}}