Show notifications before any other event in the history views

This commit is contained in:
Eric Lippmann 2019-07-15 16:36:25 +02:00 committed by Johannes Meyer
parent f80a61d9e5
commit 54f9c68887
1 changed files with 1 additions and 1 deletions

View File

@ -59,12 +59,12 @@ class EventhistoryQuery extends IdoQuery
'service_display_name'
);
$this->subQueries = array(
$this->createSubQuery('Notificationhistory', $columns),
$this->createSubQuery('Statehistory', $columns),
$this->createSubQuery('Downtimestarthistory', $columns),
$this->createSubQuery('Downtimeendhistory', $columns),
$this->createSubQuery('Commenthistory', $columns),
$this->createSubQuery('Commentdeletionhistory', $columns),
$this->createSubQuery('Notificationhistory', $columns),
$this->createSubQuery('Flappingstarthistory', $columns),
$this->createSubQuery('Flappingendhistory', $columns)
);