summaryrefslogtreecommitdiff
path: root/Project-Unite
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-30 11:01:37 -0400
committerMichael <[email protected]>2017-04-30 11:01:37 -0400
commit068c542ab6aa1684f10976c1baecabcbeb4e408e (patch)
tree927bee6cc90cd6962dfc5258dc338078a5b47e4e /Project-Unite
parentc9716799cc49c24d691a612712bdbd860e46e8b6 (diff)
downloadproject-unite-068c542ab6aa1684f10976c1baecabcbeb4e408e.tar.gz
project-unite-068c542ab6aa1684f10976c1baecabcbeb4e408e.tar.bz2
project-unite-068c542ab6aa1684f10976c1baecabcbeb4e408e.zip
fix some errors
Diffstat (limited to 'Project-Unite')
-rw-r--r--Project-Unite/Controllers/OAuth2Controller.cs10
1 files changed, 7 insertions, 3 deletions
diff --git a/Project-Unite/Controllers/OAuth2Controller.cs b/Project-Unite/Controllers/OAuth2Controller.cs
index f8bc0fd..ddb065d 100644
--- a/Project-Unite/Controllers/OAuth2Controller.cs
+++ b/Project-Unite/Controllers/OAuth2Controller.cs
@@ -1,12 +1,16 @@
using System;
-using System.Collections.Generic;
+using System.Globalization;
using System.Linq;
-using System.Net;
-using System.Text;
+using System.Security.Claims;
using System.Threading.Tasks;
using System.Web;
using System.Web.Mvc;
+using Microsoft.AspNet.Identity;
+using Microsoft.AspNet.Identity.Owin;
+using Microsoft.Owin.Security;
using Project_Unite.Models;
+using System.Text;
+using System.Net;
namespace Project_Unite.Controllers
{