ui/app/authenticated/clusters/cluster/host-new/controller.js

17 lines
422 B
JavaScript

import { alias } from '@ember/object/computed';
import Controller, { inject as controller } from '@ember/controller';
export default Controller.extend({
clusterController: controller('authenticated.clusters.cluster'),
cluster: alias('clusterController.model'),
queryParams : ['backTo', 'driver', 'hostId'],
backTo : null,
driver : null,
hostId : null,
actions: {
completed() {}
}
});