diff --git a/src/Radarr.Http/Authentication/AuthenticationController.cs b/src/Radarr.Http/Authentication/AuthenticationController.cs index 6de214c760..acdbfddfaf 100644 --- a/src/Radarr.Http/Authentication/AuthenticationController.cs +++ b/src/Radarr.Http/Authentication/AuthenticationController.cs @@ -23,6 +23,7 @@ public AuthenticationController(IAuthenticationService authService, IConfigFileP } [HttpPost("login")] + [HttpGet("login/sso")] public Task LoginLogin([FromForm] LoginResource resource, [FromQuery] string returnUrl = "/") { if (_configFileProvider.AuthenticationMethod == AuthenticationType.Forms) diff --git a/src/Radarr.Http/Frontend/StaticResourceController.cs b/src/Radarr.Http/Frontend/StaticResourceController.cs index 9707415a40..985ba418e5 100644 --- a/src/Radarr.Http/Frontend/StaticResourceController.cs +++ b/src/Radarr.Http/Frontend/StaticResourceController.cs @@ -26,7 +26,6 @@ public StaticResourceController(IEnumerable requestMappe [AllowAnonymous] [HttpGet("login")] [HttpGet("login/failed")] - [HttpGet("login/sso")] [HttpGet("login/sso/failed")] public IActionResult LoginPage() {