Quality config complete (needs to look better, but it is functional, minus deleting).

This commit is contained in:
markus101 2011-02-05 23:13:17 -08:00
parent 6d790f8939
commit 2ba6057ec7
6 changed files with 80 additions and 20 deletions

View file

@ -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();
}
}
}