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