14 lines
353 B
JavaScript
14 lines
353 B
JavaScript
import Controller from '@ember/controller';
|
|
|
|
export default Controller.extend({
|
|
actions: {
|
|
editCollection() {
|
|
this.transitionToRoute('collections.detail.edit', this.get('model'));
|
|
},
|
|
deleteCollection() {
|
|
this.get('model')[0].destroyRecord().then(() => {
|
|
this.transitionToRoute('collections');
|
|
});
|
|
},
|
|
},
|
|
});
|