From cb841166fe07d2cc5e7f69e464bbd6a3e58f7e96 Mon Sep 17 00:00:00 2001 From: "Tizian.Breuch" Date: Fri, 1 Aug 2025 12:01:02 +0200 Subject: [PATCH] auth controller --- Webshop.Api/Controllers/Auth/AuthController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Webshop.Api/Controllers/Auth/AuthController.cs b/Webshop.Api/Controllers/Auth/AuthController.cs index 95f000f..6325205 100644 --- a/Webshop.Api/Controllers/Auth/AuthController.cs +++ b/Webshop.Api/Controllers/Auth/AuthController.cs @@ -9,7 +9,7 @@ using Webshop.Application.Services.Customers; namespace Webshop.Api.Controllers.Auth // Beachten Sie den Namespace { [ApiController] - [Route("api/v1/[controller]")] // z.B. /api/v1/auth + [Route("api/v1/auth/[controller]")] // z.B. /api/v1/auth public class AuthController : ControllerBase { private readonly IAuthService _authService;