mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-15 01:23:53 -07:00
Quality config complete (needs to look better, but it is functional, minus deleting).
This commit is contained in:
parent
6d790f8939
commit
2ba6057ec7
6 changed files with 80 additions and 20 deletions
|
@ -3,6 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using NzbDrone.Web.Models;
|
||||
|
||||
namespace NzbDrone.Web.Controllers
|
||||
{
|
||||
|
@ -20,5 +21,18 @@ namespace NzbDrone.Web.Controllers
|
|||
{
|
||||
return View();
|
||||
}
|
||||
|
||||
public ActionResult Test()
|
||||
{
|
||||
var model = new TestModel();
|
||||
return View(model);
|
||||
}
|
||||
|
||||
[HttpPost]
|
||||
public ActionResult Test(TestModel model)
|
||||
{
|
||||
|
||||
return View();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue