diff --git a/LightlessSyncServer/LightlessSyncAuthService/Controllers/OAuthController.cs b/LightlessSyncServer/LightlessSyncAuthService/Controllers/OAuthController.cs index 81194ca..5d7215f 100644 --- a/LightlessSyncServer/LightlessSyncAuthService/Controllers/OAuthController.cs +++ b/LightlessSyncServer/LightlessSyncAuthService/Controllers/OAuthController.cs @@ -24,8 +24,6 @@ public class OAuthController : AuthControllerBase { private const string _discordOAuthCall = "discordCall"; private const string _discordOAuthCallback = "discordCallback"; - private const string _xivauthCall = "xivauthCall"; - private const string _xivauthCallBack = "xivauthCallBack"; private static readonly ConcurrentDictionary _cookieOAuthResponse = []; public OAuthController(ILogger logger, @@ -38,21 +36,6 @@ public class OAuthController : AuthControllerBase { } - [AllowAnonymous] - [HttpGet(_xivauthCall)] - public IActionResult XIVAuthOAuthSetCookieAndRedirect([FromQuery] string sessionId) - { - return View(); - } - - - [AllowAnonymous] - [HttpGet(_xivauthCallBack)] - public IActionResult XIVAuthOAuthCallback([FromQuery] string code) - { - return View(); - } - [AllowAnonymous] [HttpGet(_discordOAuthCall)] public IActionResult DiscordOAuthSetCookieAndRedirect([FromQuery] string sessionId)