DowntimesController: Restrict display of downtimes

refs #9009
This commit is contained in:
Johannes Meyer 2015-06-15 16:00:19 +02:00
parent 9a6e3a7042
commit 8b749521ba
1 changed files with 4 additions and 2 deletions

View File

@ -39,7 +39,7 @@ class Monitoring_DowntimesController extends Controller
'downtime_internal_id',
(string)$this->params
));
$this->downtimes = $this->backend->select()->from('downtime', array(
$query = $this->backend->select()->from('downtime', array(
'id' => 'downtime_internal_id',
'objecttype' => 'object_type',
'comment' => 'downtime_comment',
@ -59,8 +59,10 @@ class Monitoring_DowntimesController extends Controller
'service_description',
'host_display_name',
'service_display_name'
))->addFilter($this->filter)->getQuery()->fetchAll();
))->addFilter($this->filter);
$this->applyRestriction('monitoring/filter/objects', $query);
$this->downtimes = $query->getQuery()->fetchAll();
if (false === $this->downtimes) {
throw new Zend_Controller_Action_Exception(
$this->translate('Downtime not found')