diff --git a/modules/monitoring/application/controllers/ServicesController.php b/modules/monitoring/application/controllers/ServicesController.php index 31db67505..9d4c9a4c8 100644 --- a/modules/monitoring/application/controllers/ServicesController.php +++ b/modules/monitoring/application/controllers/ServicesController.php @@ -90,11 +90,13 @@ class ServicesController extends Controller public function showAction() { $this->setAutorefreshInterval(15); - $checkNowForm = new CheckNowCommandForm(); - $checkNowForm - ->setObjects($this->serviceList) - ->handleRequest(); - $this->view->checkNowForm = $checkNowForm; + if ($this->Auth()->hasPermission('monitoring/command/schedule-check')) { + $checkNowForm = new CheckNowCommandForm(); + $checkNowForm + ->setObjects($this->serviceList) + ->handleRequest(); + $this->view->checkNowForm = $checkNowForm; + } $acknowledgedObjects = $this->serviceList->getAcknowledgedObjects(); if (! empty($acknowledgedObjects)) { diff --git a/modules/monitoring/application/views/scripts/services/show.phtml b/modules/monitoring/application/views/scripts/services/show.phtml index 167016be4..f20a01184 100644 --- a/modules/monitoring/application/views/scripts/services/show.phtml +++ b/modules/monitoring/application/views/scripts/services/show.phtml @@ -176,10 +176,12 @@ -