mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
NotificationQuery: Provide case-insensitive filter column `contact'
refs #8613
This commit is contained in:
parent
29f05bf878
commit
9cc5469305
@ -19,6 +19,7 @@ class NotificationQuery extends IdoQuery
|
|||||||
'service_description' => 'o.name2'
|
'service_description' => 'o.name2'
|
||||||
),
|
),
|
||||||
'contact' => array(
|
'contact' => array(
|
||||||
|
'contact' => 'c_o.name1 COLLATE latin1_general_ci',
|
||||||
'notification_contact_name' => 'c_o.name1',
|
'notification_contact_name' => 'c_o.name1',
|
||||||
'contact_object_id' => 'c_o.object_id'
|
'contact_object_id' => 'c_o.object_id'
|
||||||
),
|
),
|
||||||
|
@ -37,6 +37,6 @@ class Notification extends DataView
|
|||||||
|
|
||||||
public function getFilterColumns()
|
public function getFilterColumns()
|
||||||
{
|
{
|
||||||
return array('host', 'service');
|
return array('host', 'service', 'contact');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user