summaryrefslogtreecommitdiffstats
path: root/modules/monitoring/library/Monitoring/DataView/Hostcontact.php
blob: ecfed2ffb9be98d59747550607051371372f793e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
/* Icinga Web 2 | (c) 2018 Icinga Development Team | GPLv2+ */

namespace Icinga\Module\Monitoring\DataView;

class Hostcontact extends Contact
{
    public function getColumns()
    {
        return [
            'contact_name',
            'contact_alias',
            'contact_email',
            'contact_pager'
        ];
    }
}