mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-09-23 18:07:42 +02:00
NotificationQuery: Provide case-insensitive filter column `host'
refs #8613
This commit is contained in:
parent
644a386bf8
commit
3653ec810a
@ -13,6 +13,7 @@ class NotificationQuery extends IdoQuery
|
|||||||
'notification_object_id' => 'n.object_id'
|
'notification_object_id' => 'n.object_id'
|
||||||
),
|
),
|
||||||
'objects' => array(
|
'objects' => array(
|
||||||
|
'host' => 'o.name1 COLLATE latin1_general_ci',
|
||||||
'host_name' => 'o.name1',
|
'host_name' => 'o.name1',
|
||||||
'service_description' => 'o.name2'
|
'service_description' => 'o.name2'
|
||||||
),
|
),
|
||||||
|
@ -34,4 +34,9 @@ class Notification extends DataView
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getFilterColumns()
|
||||||
|
{
|
||||||
|
return array('host');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user