monitoring: Ignore restrictions if user has the wildcard restriction
resolves #9830
This commit is contained in:
parent
064e821383
commit
0e14cb48da
|
@ -72,6 +72,9 @@ class Controller extends IcingaWebController
|
|||
));
|
||||
|
||||
foreach ($this->getRestrictions($restriction) as $filter) {
|
||||
if ($filter === '*') {
|
||||
return $view;
|
||||
}
|
||||
try {
|
||||
$restrictions->addFilter(Filter::fromQueryString($filter));
|
||||
} catch (QueryException $e) {
|
||||
|
|
Loading…
Reference in New Issue