Delete strains
This commit is contained in:
parent
bf8289436f
commit
56e7b088ac
2 changed files with 12 additions and 0 deletions
11
app/pods/protected/strains/show/controller.js
Normal file
11
app/pods/protected/strains/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.strains.index');
|
||||
},
|
||||
},
|
||||
|
||||
});
|
|
@ -105,4 +105,5 @@
|
|||
{{#link-to 'protected.strains.edit' model.id class="button-gray smaller"}}
|
||||
Edit
|
||||
{{/link-to}}
|
||||
{{delete-button delete=(action 'delete')}}
|
||||
{{/if}}
|
||||
|
|
Reference in a new issue