Is your feature request related to a problem? Please describe.
In the event detail view a list of notified users is shown. Unfortunately it always shows a maximum of 5 recipients and you have to click on "Show all X recipients" to see the rest. Since there is nothing else after this list our customer would like to see all customers at once instead of first having to click on the "Show all..." link.
I already identified the line where the limit is hard coded:
|
$users = $notification->user |
|
->limit(5) |
|
->peekAhead(); |
Describe the solution you'd like
The simplest solution would be to remove the limit completely or at least set it much higher, like 25 or so.
An other solution would be to make it configurable.
Additional context

Is your feature request related to a problem? Please describe.
In the event detail view a list of notified users is shown. Unfortunately it always shows a maximum of 5 recipients and you have to click on "Show all X recipients" to see the rest. Since there is nothing else after this list our customer would like to see all customers at once instead of first having to click on the "Show all..." link.
I already identified the line where the limit is hard coded:
icingadb-web/library/Icingadb/Widget/Detail/EventDetail.php
Lines 167 to 169 in 0f0683c
Describe the solution you'd like
The simplest solution would be to remove the limit completely or at least set it much higher, like 25 or so.
An other solution would be to make it configurable.
Additional context