mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-14 00:53:57 -07:00
Past Week Backlog Search job added
New: Manually search for all missing episodes form the last 7 days (from Missing page)
This commit is contained in:
parent
92bd547315
commit
8a7d474b74
4 changed files with 66 additions and 0 deletions
|
@ -52,6 +52,12 @@ namespace NzbDrone.Web.Controllers
|
|||
return JsonNotificationResult.Queued("Recent backlog search");
|
||||
}
|
||||
|
||||
public JsonResult PastWeekBacklogSearch()
|
||||
{
|
||||
_jobProvider.QueueJob(typeof(PastWeekBacklogSearchJob));
|
||||
return JsonNotificationResult.Queued("Past Week backlog search");
|
||||
}
|
||||
|
||||
public JsonResult ForceRefresh(int seriesId)
|
||||
{
|
||||
_jobProvider.QueueJob(typeof(UpdateInfoJob), seriesId);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue