summaryrefslogtreecommitdiffstats
path: root/projecttemplates/MvcRelyingParty/Controllers/HomeController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'projecttemplates/MvcRelyingParty/Controllers/HomeController.cs')
-rw-r--r--projecttemplates/MvcRelyingParty/Controllers/HomeController.cs24
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();
- }
- }
-}