// SPDX-License-Identifier: GPL-3.0-or-later 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()); } }