icingaweb2-module-director/application/controllers/ServicegroupsController.php
2017-07-14 13:21:42 +02:00

15 lines
281 B
PHP

<?php
namespace Icinga\Module\Director\Controllers;
use Icinga\Module\Director\Web\Controller\ObjectsController;
class ServicegroupsController extends ObjectsController
{
public function init()
{
parent::init();
$this->tabs()->remove('objects');
}
}