mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
More config pages have been added. AJAX to save. Order with jquery sortable.
Some RssFeed Parsing has been implemented, it does not currently download items, still need to perform a more verbose episode check.
This commit is contained in:
41
NzbDrone.Web/Controllers/Copy of SettingsController.cs
Normal file
41
NzbDrone.Web/Controllers/Copy of SettingsController.cs
Normal file
@@ -0,0 +1,41 @@
|
||||
//using System;
|
||||
//using System.Collections.Generic;
|
||||
//using System.Linq;
|
||||
//using System.Threading;
|
||||
//using System.Web;
|
||||
//using System.Web.Mvc;
|
||||
//using NzbDrone.Core.Providers;
|
||||
//using NzbDrone.Web.Models;
|
||||
|
||||
//namespace NzbDrone.Web.Controllers
|
||||
//{
|
||||
// [HandleError]
|
||||
// public class SettingsController : Controller
|
||||
// {
|
||||
// //
|
||||
// // GET: /Settings/
|
||||
// private IConfigProvider _configProvider;
|
||||
|
||||
// public SettingsController(IConfigProvider configProvider)
|
||||
// {
|
||||
// _configProvider = configProvider;
|
||||
// }
|
||||
|
||||
// public ActionResult Index()
|
||||
// {
|
||||
// return View(new SettingsModel() { TvFolder = _configProvider.SeriesRoot });
|
||||
// }
|
||||
|
||||
// [HttpPost]
|
||||
// public ActionResult Index(SettingsModel model)
|
||||
// {
|
||||
// if (ModelState.IsValid)
|
||||
// {
|
||||
// _configProvider.SeriesRoot = model.TvFolder;
|
||||
// //return RedirectToAction("index");
|
||||
// }
|
||||
// return RedirectToAction("index", "series");
|
||||
// }
|
||||
|
||||
// }
|
||||
//}
|
Reference in New Issue
Block a user