mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
EventgridQuery: Make filter column `servicegroup' case-insensitive
...and add a case-sensitive query column. refs #8613
This commit is contained in:
parent
ea16d45aa3
commit
e7c1e552a5
@ -31,7 +31,8 @@ class EventgridQuery extends IdoQuery
|
|||||||
),
|
),
|
||||||
|
|
||||||
'servicegroups' => array(
|
'servicegroups' => array(
|
||||||
'servicegroup' => 'sgo.name1'
|
'servicegroup' => 'sgo.name1 COLLATE latin1_general_ci',
|
||||||
|
'servicegroup_name' => 'sgo.name1'
|
||||||
),
|
),
|
||||||
|
|
||||||
'hostgroups' => array(
|
'hostgroups' => array(
|
||||||
|
@ -47,6 +47,6 @@ class Eventgrid extends DataView
|
|||||||
|
|
||||||
public function getFilterColumns()
|
public function getFilterColumns()
|
||||||
{
|
{
|
||||||
return array('host', 'service', 'hostgroup');
|
return array('host', 'service', 'hostgroup', 'servicegroup');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user