mirror of
https://github.com/lempamo/Project-Unite.git
synced 2025-01-22 17:22:15 +00:00
oauth login api
This commit is contained in:
parent
10cb3a6bfe
commit
3d7126efd7
2 changed files with 19 additions and 0 deletions
17
Project-Unite/Controllers/OAuth2Controller.cs
Normal file
17
Project-Unite/Controllers/OAuth2Controller.cs
Normal file
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
|
@ -260,6 +260,7 @@
|
|||
<Compile Include="Controllers\LegalController.cs" />
|
||||
<Compile Include="Controllers\ManageController.cs" />
|
||||
<Compile Include="Controllers\ModeratorController.cs" />
|
||||
<Compile Include="Controllers\OAuth2Controller.cs" />
|
||||
<Compile Include="Controllers\ProfilesController.cs" />
|
||||
<Compile Include="Controllers\SkinsController.cs" />
|
||||
<Compile Include="Controllers\WikiControllerController.cs" />
|
||||
|
@ -587,6 +588,7 @@
|
|||
<Folder Include="App_Data\" />
|
||||
<Folder Include="Properties\PublishProfiles\" />
|
||||
<Folder Include="Views\API\" />
|
||||
<Folder Include="Views\OAuth2\" />
|
||||
<Folder Include="Views\WikiController\" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
|
Loading…
Reference in a new issue