mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
da979639ba
Some RssFeed Parsing has been implemented, it does not currently download items, still need to perform a more verbose episode check.
42 lines
1.1 KiB
C#
42 lines
1.1 KiB
C#
//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");
|
|
// }
|
|
|
|
// }
|
|
//}
|