From 3d7126efd77deadac5f6be00c18e06eb62be49e3 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 30 Apr 2017 10:41:29 -0400 Subject: [PATCH] oauth login api --- Project-Unite/Controllers/OAuth2Controller.cs | 17 +++++++++++++++++ Project-Unite/Project-Unite.csproj | 2 ++ 2 files changed, 19 insertions(+) create mode 100644 Project-Unite/Controllers/OAuth2Controller.cs diff --git a/Project-Unite/Controllers/OAuth2Controller.cs b/Project-Unite/Controllers/OAuth2Controller.cs new file mode 100644 index 0000000..39aa75c --- /dev/null +++ b/Project-Unite/Controllers/OAuth2Controller.cs @@ -0,0 +1,17 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Web; +using System.Web.Mvc; + +namespace Project_Unite.Controllers +{ + public class OAuth2Controller : Controller + { + // GET: OAuth2 + public ActionResult Index() + { + return View(); + } + } +} \ No newline at end of file diff --git a/Project-Unite/Project-Unite.csproj b/Project-Unite/Project-Unite.csproj index 31ca90d..07bcda5 100644 --- a/Project-Unite/Project-Unite.csproj +++ b/Project-Unite/Project-Unite.csproj @@ -260,6 +260,7 @@ + @@ -587,6 +588,7 @@ +