mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
System.Logs view can now be filtered by severity.
This commit is contained in:
parent
af4c351428
commit
9df0ad0bf7
7 changed files with 116 additions and 25 deletions
|
@ -241,6 +241,16 @@ namespace NzbDrone.Api.REST
|
|||
}
|
||||
}
|
||||
|
||||
if (Request.Query.FilterKey != null)
|
||||
{
|
||||
pagingResource.FilterKey = Request.Query.FilterKey.ToString();
|
||||
|
||||
if (Request.Query.FilterValue != null)
|
||||
{
|
||||
pagingResource.FilterValue = Request.Query.FilterValue.ToString();
|
||||
}
|
||||
}
|
||||
|
||||
return pagingResource;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue