mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Quality config complete (needs to look better, but it is functional, minus deleting).
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user