monitoring/commands: Add missing `ListController' change from the last commit
refs #6593
This commit is contained in:
parent
274f2e7410
commit
27650be481
|
@ -4,6 +4,8 @@
|
|||
|
||||
use Icinga\Module\Monitoring\Controller;
|
||||
use Icinga\Module\Monitoring\Backend;
|
||||
use Icinga\Module\Monitoring\Form\Command\Object\DeleteCommentCommandForm;
|
||||
use Icinga\Module\Monitoring\Form\Command\Object\DeleteDowntimeCommandForm;
|
||||
use Icinga\Web\Url;
|
||||
use Icinga\Web\Hook;
|
||||
use Icinga\Web\Widget\Tabextension\DashboardAction;
|
||||
|
@ -297,6 +299,7 @@ class Monitoring_ListController extends Controller
|
|||
'downtime_scheduled_end' => 'Scheduled End',
|
||||
'downtime_duration' => 'Duration',
|
||||
));
|
||||
$this->view->delDowntimeForm = new DeleteDowntimeCommandForm();
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -426,6 +429,7 @@ class Monitoring_ListController extends Controller
|
|||
'comment_expiration' => 'Expiration',
|
||||
)
|
||||
);
|
||||
$this->view->delCommentForm = new DeleteCommentCommandForm();
|
||||
}
|
||||
|
||||
public function servicegroupsAction()
|
||||
|
|
Loading…
Reference in New Issue