diff --git a/NzbDrone.Web/Controllers/CommandController.cs b/NzbDrone.Web/Controllers/CommandController.cs index aedf1a036..a9f7bb05c 100644 --- a/NzbDrone.Web/Controllers/CommandController.cs +++ b/NzbDrone.Web/Controllers/CommandController.cs @@ -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); diff --git a/NzbDrone.Web/Views/Missing/Index.cshtml b/NzbDrone.Web/Views/Missing/Index.cshtml index a0bf3ce6e..6ffbc29d0 100644 --- a/NzbDrone.Web/Views/Missing/Index.cshtml +++ b/NzbDrone.Web/Views/Missing/Index.cshtml @@ -9,7 +9,8 @@ @section ActionMenu{ } @{Html.Telerik().Grid().Name("missing")