Debug and fix called url

This commit is contained in:
2026-01-27 22:25:43 +01:00
parent 803a9f86e1
commit 8838fcd65c
2 changed files with 10 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ app.UseHttpsRedirection();
app.UseAntiforgery();
app.MapPost("/register", async (UserRegister request, IAuthService authService) =>
app.MapPost("/api/register", async (UserRegister request, IAuthService authService) =>
await authService.Register(request.Email, request.Password));
app.MapStaticAssets();