Episode renaming implemented on the Series/Details page.

This commit is contained in:
Mark McDowall 2011-06-05 22:23:28 -07:00
parent cbaa2f7ef4
commit 4d3ba62e5d
9 changed files with 90 additions and 285 deletions

View file

@ -27,6 +27,11 @@ namespace NzbDrone.Web.Controllers
return new JsonResult { Data = "ok" };
}
public JsonResult Rename(int episodeFileId)
{
_jobProvider.QueueJob(typeof(RenameEpisodeJob), episodeFileId);
return new JsonResult { Data = "ok" };
}
}
}