mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-13 08:54:24 +02:00
14 lines
303 B
PHP
14 lines
303 B
PHP
<?php
|
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
use Icinga\Module\Director\Web\Controller\NewObjectsController;
|
|
|
|
class NotificationsController extends NewObjectsController
|
|
{
|
|
protected function checkDirectorPermissions()
|
|
{
|
|
$this->assertPermission('director/notifications');
|
|
}
|
|
}
|