2016-02-27 01:14:27 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Icinga\Module\Director\Controllers;
|
|
|
|
|
|
|
|
use Icinga\Module\Director\Web\Controller\ObjectsController;
|
|
|
|
|
|
|
|
class NotificationsController extends ObjectsController
|
|
|
|
{
|
2016-11-03 16:06:18 +01:00
|
|
|
protected function checkDirectorPermissions()
|
|
|
|
{
|
|
|
|
$this->assertPermission('director/notifications');
|
|
|
|
}
|
2016-02-27 01:14:27 +01:00
|
|
|
}
|