diff --git a/Endpoint/Controllers/V1/AuthController.cs b/Endpoint/Controllers/V1/AuthController.cs index 25961ed..1b969db 100644 --- a/Endpoint/Controllers/V1/AuthController.cs +++ b/Endpoint/Controllers/V1/AuthController.cs @@ -80,8 +80,6 @@ public class AuthController(IOptionsSnapshot user, AuthService auth, Pass /// /// An Ok response if the logout was successful. [HttpGet("Logout")] - [ProducesResponseType(StatusCodes.Status401Unauthorized)] - [Authorize] public async Task Logout() { await auth.LogoutAsync(GetCookieParams(), HttpContext);