mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
fixed show grid, added details page
This commit is contained in:
parent
772452aa8b
commit
4d4a8198eb
15 changed files with 153 additions and 117 deletions
|
@ -35,9 +35,9 @@ namespace NzbDrone.Web.Controllers
|
|||
//
|
||||
// GET: /Series/Details/5
|
||||
|
||||
public ActionResult Details(int id)
|
||||
public ActionResult Details(int tvdbId)
|
||||
{
|
||||
return View();
|
||||
return View(_seriesController.GetSeries(tvdbId));
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
@ -30,9 +30,10 @@ namespace NzbDrone.Web.Controllers
|
|||
if (ModelState.IsValid)
|
||||
{
|
||||
_configController.SeriesRoot = model.TvFolder;
|
||||
//return RedirectToAction("index");
|
||||
}
|
||||
|
||||
return RedirectToAction("index");
|
||||
|
||||
return View(model);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue