mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
Renamed EpisodeSorting to Naming (to Match UI).
Fixed EpisodeNaming CSS (Floats are now contained properly). Renamed CodeFile1 to FooterModel.
This commit is contained in:
parent
7af6977cab
commit
041ad20bb3
6 changed files with 25 additions and 19 deletions
|
@ -197,9 +197,9 @@ namespace NzbDrone.Web.Controllers
|
|||
return View(model);
|
||||
}
|
||||
|
||||
public ActionResult EpisodeSorting()
|
||||
public ActionResult Naming()
|
||||
{
|
||||
var model = new EpisodeSortingModel();
|
||||
var model = new EpisodeNamingModel();
|
||||
|
||||
model.SeriesName = _configProvider.SortingIncludeSeriesName;
|
||||
model.EpisodeName = _configProvider.SortingIncludeEpisodeTitle;
|
||||
|
@ -559,7 +559,7 @@ namespace NzbDrone.Web.Controllers
|
|||
}
|
||||
|
||||
[HttpPost]
|
||||
public JsonResult SaveEpisodeSorting(EpisodeSortingModel data)
|
||||
public JsonResult SaveNaming(EpisodeNamingModel data)
|
||||
{
|
||||
if (ModelState.IsValid)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue