diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-06-16 16:05:44 -0700 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-06-16 16:05:44 -0700 |
commit | c74bede6f773bd0a0c6362a6647a2939554ccd9a (patch) | |
tree | c43abdf614a40e6932e8d5597817a6197a3742d5 /projecttemplates/MvcRelyingParty/Controllers/HomeController.cs | |
parent | 6616faa0d09dc0fd6f60bc5ce122476aefaec44c (diff) | |
download | DotNetOpenAuth-c74bede6f773bd0a0c6362a6647a2939554ccd9a.zip DotNetOpenAuth-c74bede6f773bd0a0c6362a6647a2939554ccd9a.tar.gz DotNetOpenAuth-c74bede6f773bd0a0c6362a6647a2939554ccd9a.tar.bz2 |
Removes project templates.
These haven't run correctly for many months anyway, and they'd be horribly out-dated even if they did work.
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Controllers/HomeController.cs')
-rw-r--r-- | projecttemplates/MvcRelyingParty/Controllers/HomeController.cs | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs b/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs deleted file mode 100644 index 0bf7ab3..0000000 --- a/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs +++ /dev/null @@ -1,24 +0,0 @@ -namespace MvcRelyingParty.Controllers { - using System; - using System.Collections.Generic; - using System.Linq; - using System.Web; - using System.Web.Mvc; - - [HandleError] - public class HomeController : Controller { - public ActionResult Index() { - ViewData["Message"] = "Welcome to ASP.NET MVC with OpenID RP + OAuth SP support!"; - - return View(); - } - - public ActionResult About() { - return View(); - } - - public ActionResult PrivacyPolicy() { - return View(); - } - } -} |