summaryrefslogtreecommitdiffstats
path: root/library/Director/Dashboard/Dashlet/NotificationsDashlet.php
diff options
context:
space:
mode:
Diffstat (limited to 'library/Director/Dashboard/Dashlet/NotificationsDashlet.php')
-rw-r--r--library/Director/Dashboard/Dashlet/NotificationsDashlet.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/library/Director/Dashboard/Dashlet/NotificationsDashlet.php b/library/Director/Dashboard/Dashlet/NotificationsDashlet.php
index 85610f0..a0b1e43 100644
--- a/library/Director/Dashboard/Dashlet/NotificationsDashlet.php
+++ b/library/Director/Dashboard/Dashlet/NotificationsDashlet.php
@@ -2,11 +2,13 @@
namespace Icinga\Module\Director\Dashboard\Dashlet;
+use Icinga\Module\Director\Auth\Permission;
+
class NotificationsDashlet extends Dashlet
{
protected $icon = 'bell';
- protected $requiredStats = array('notification');
+ protected $requiredStats = ['notification'];
public function getTitle()
{
@@ -23,7 +25,7 @@ class NotificationsDashlet extends Dashlet
public function listRequiredPermissions()
{
- return array('director/notifications');
+ return [Permission::NOTIFICATIONS];
}
public function getUrl()