ui/lib/global-admin/addon/machines/configure/controller.js

13 lines
242 B
JavaScript

import Controller from '@ember/controller'
export default Controller.extend({
actions: {
launch() {
this.transitionToRoute('machines.launch');
},
add() {
this.transitionToRoute('machines.configure');
},
}
});