icingaweb2-module-director/application/controllers/NotificationtemplateControl...

17 lines
416 B
PHP

<?php
namespace Icinga\Module\Director\Controllers;
use Icinga\Module\Director\Objects\IcingaNotification;
use Icinga\Module\Director\Web\Controller\TemplateController;
class NotificationtemplateController extends TemplateController
{
protected function requireTemplate()
{
return IcingaNotification::load([
'object_name' => $this->params->get('name')
], $this->db());
}
}