summaryrefslogtreecommitdiff
path: root/Project-Unite/Controllers
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-30 10:41:29 -0400
committerMichael <[email protected]>2017-04-30 10:41:29 -0400
commit3d7126efd77deadac5f6be00c18e06eb62be49e3 (patch)
tree3302eac9d99d66c87815b3ed545bb75e14978b2d /Project-Unite/Controllers
parent10cb3a6bfe2eb782f1dc92cc6b27d30c631ac558 (diff)
downloadproject-unite-3d7126efd77deadac5f6be00c18e06eb62be49e3.tar.gz
project-unite-3d7126efd77deadac5f6be00c18e06eb62be49e3.tar.bz2
project-unite-3d7126efd77deadac5f6be00c18e06eb62be49e3.zip
oauth login api
Diffstat (limited to 'Project-Unite/Controllers')
-rw-r--r--Project-Unite/Controllers/OAuth2Controller.cs17
1 files changed, 17 insertions, 0 deletions
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