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