Delete species
This commit is contained in:
parent
a1e4e03b89
commit
bf8289436f
2 changed files with 12 additions and 0 deletions
11
app/pods/protected/species/show/controller.js
Normal file
11
app/pods/protected/species/show/controller.js
Normal 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');
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
});
|
|
@ -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}}
|
||||||
|
|
Reference in a new issue