summaryrefslogtreecommitdiffstats
path: root/application/controllers/IdoServicesController.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/controllers/IdoServicesController.php')
-rw-r--r--application/controllers/IdoServicesController.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/application/controllers/IdoServicesController.php b/application/controllers/IdoServicesController.php
new file mode 100644
index 0000000..f55e1d7
--- /dev/null
+++ b/application/controllers/IdoServicesController.php
@@ -0,0 +1,24 @@
+<?php
+
+// Icinga Cube Module | (c) 2022 Icinga GmbH | GPLv2
+
+namespace Icinga\Module\Cube\Controllers;
+
+use Icinga\Module\Cube\Ido\IdoCube;
+use Icinga\Module\Cube\Ido\IdoServiceStatusCube;
+use Icinga\Module\Cube\Web\IdoController;
+
+class IdoServicesController extends IdoController
+{
+ public function indexAction(): void
+ {
+ $this->createTabs()->activate('cube/services');
+
+ $this->renderCube();
+ }
+
+ protected function getCube(): IdoCube
+ {
+ return new IdoServiceStatusCube();
+ }
+}