Some new icons/ Submenu tweaks.

This commit is contained in:
kay.one 2012-02-25 08:35:27 -08:00
parent 3b18c9f621
commit 0bb36eb20c
11 changed files with 18 additions and 21 deletions

View file

@ -47,15 +47,11 @@ namespace NzbDrone.Web.Controllers
return JsonNotificationResult.Info("Queued");
}
public JsonResult ScanDisk(int seriesId)
{
_jobProvider.QueueJob(typeof(DiskScanJob), seriesId);
return JsonNotificationResult.Info("Queued");
}
public JsonResult UpdateInfo(int seriesId)
public JsonResult ForceRefresh(int seriesId)
{
_jobProvider.QueueJob(typeof(UpdateInfoJob), seriesId);
_jobProvider.QueueJob(typeof(DiskScanJob), seriesId);
return JsonNotificationResult.Info("Queued");
}