mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
39 lines
728 B
C#
39 lines
728 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc;
|
|
using NzbDrone.Web.Models;
|
|
|
|
namespace NzbDrone.Web.Controllers
|
|
{
|
|
[HandleError]
|
|
public class HomeController : Controller
|
|
{
|
|
public ActionResult Index()
|
|
{
|
|
ViewData["Message"] = "Welcome to ASP.NET MVC!";
|
|
|
|
return View();
|
|
}
|
|
|
|
public ActionResult About()
|
|
{
|
|
return View();
|
|
}
|
|
|
|
public ActionResult Test()
|
|
{
|
|
var model = new TestModel();
|
|
return View(model);
|
|
}
|
|
|
|
[HttpPost]
|
|
public ActionResult Test(TestModel model)
|
|
{
|
|
|
|
return View();
|
|
}
|
|
}
|
|
}
|