Introduce NotificationList Widget

This commit is contained in:
Florian Strohmaier 2019-10-23 12:30:30 +02:00 committed by Eric Lippmann
parent 024496ad77
commit 1171a27c34

View file

@ -0,0 +1,15 @@
<?php
namespace Icinga\Module\Eagle\Widget\ItemList;
use Icinga\Module\Eagle\Widget\BaseItemList;
class NotificationList extends BaseItemList
{
protected $defaultAttributes = ['class' => 'notification-list'];
protected function getItemClass()
{
return NotificationListItem::class;
}
}