New: Backlog can now be controlled per series.

Applies to Backlog and RecentBacklog jobs. Editable in Series/MassEdit and Series Edit.
Added RecentBacklog button to Missing view, with mouse over description.
This commit is contained in:
Mark McDowall 2012-01-24 17:21:20 -08:00
parent 6772db7e69
commit 3a5d99921e
2 changed files with 8 additions and 1 deletions

View file

@ -34,6 +34,12 @@ namespace NzbDrone.Web.Controllers
return JsonNotificationResult.Info("Queued");
}
public JsonResult RecentBacklogSearch()
{
_jobProvider.QueueJob(typeof(RecentBacklogSearchJob));
return JsonNotificationResult.Info("Queued");
}
public JsonResult ScanDisk(int seriesId)
{
_jobProvider.QueueJob(typeof(DiskScanJob), seriesId);