mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2026-02-12 07:13:42 -05:00
18 lines
354 B
PHP
18 lines
354 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
use Icinga\Module\Director\Web\Controller\ObjectController;
|
|
|
|
class UserController extends ObjectController
|
|
{
|
|
protected function checkDirectorPermissions()
|
|
{
|
|
$this->assertPermission('director/users');
|
|
}
|
|
|
|
protected function hasBasketSupport()
|
|
{
|
|
return true;
|
|
}
|
|
}
|