diff --git a/application/controllers/HostsController.php b/application/controllers/HostsController.php new file mode 100644 index 00000000..f344c07a --- /dev/null +++ b/application/controllers/HostsController.php @@ -0,0 +1,23 @@ +setTitle($this->translate('Hosts')); + + $db = $this->getDb(); + + $hosts = Host::on($db)->with('state'); + + $hostList = new HostList($hosts); + + $this->addContent($hostList); + } +}