|
import Controller from '@ember/controller';
|
|
|
|
export default Controller.extend({
|
|
availableDrivers: null,
|
|
driver: null,
|
|
|
|
actions: {
|
|
completed(/* neu */) {
|
|
this.transitionToRoute('machines.templates');
|
|
},
|
|
goBack() {
|
|
this.transitionToRoute('machines.templates');
|
|
}
|
|
}
|
|
});
|