From 396fff687b12c9f73f532e2e1586b7bd85c4a651 Mon Sep 17 00:00:00 2001 From: antoineatstariongroup Date: Tue, 21 Jan 2025 14:25:10 +0100 Subject: [PATCH] Fix build issue --- CometServer/Modules/Authentication/AuthenticationModule.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/CometServer/Modules/Authentication/AuthenticationModule.cs b/CometServer/Modules/Authentication/AuthenticationModule.cs index 6bd4298f..5ef5902c 100644 --- a/CometServer/Modules/Authentication/AuthenticationModule.cs +++ b/CometServer/Modules/Authentication/AuthenticationModule.cs @@ -71,8 +71,6 @@ public override void AddRoutes(IEndpointRouteBuilder app) app.MapPost("/logout", async (HttpRequest req, HttpResponse res) => { - await req.HttpContext.SignInAsync(req.Headers.Authorization.); - //return webServiceAuthentication.LogOutResponse(req.HttpContext); throw new NotImplementedException(); }).RequireAuthorization(ApiBase.AuthenticationSchemes);