From 3e5d94e26f7c53724544c9c5d1d5bf2d9e1ba328 Mon Sep 17 00:00:00 2001 From: Kevin Matsubara Date: Fri, 18 Apr 2025 11:50:18 +0200 Subject: [PATCH] Add missing mapping to identity endpoints. (Logout did not work for example) --- ServerManagement/Program.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ServerManagement/Program.cs b/ServerManagement/Program.cs index f62b6a6..903be22 100644 --- a/ServerManagement/Program.cs +++ b/ServerManagement/Program.cs @@ -85,4 +85,7 @@ app.UseAntiforgery(); app.MapRazorComponents() .AddInteractiveServerRenderMode(); // Provides server interactivity. +// Add additional endpoints required by the Identity /Account Razor components. +app.MapAdditionalIdentityEndpoints(); + app.Run();