mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-06-10 09:23:37 -04:00
14 lines
268 B
PHP
14 lines
268 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
use Icinga\Module\Director\Web\Controller\ObjectsController;
|
|
|
|
class ServicesController extends ObjectsController
|
|
{
|
|
protected $multiEdit = array(
|
|
'imports',
|
|
'groups',
|
|
'disabled'
|
|
);
|
|
}
|