From d297055cc4ab7e3c8a93d2b98beca4da08aba908 Mon Sep 17 00:00:00 2001 From: Aminekan Date: Wed, 18 Mar 2026 12:30:29 +0100 Subject: [PATCH] Produkte & Kategorien API --- ShopAPI/ShopAPI/Controllers/ProductController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ShopAPI/ShopAPI/Controllers/ProductController.cs b/ShopAPI/ShopAPI/Controllers/ProductController.cs index 9ac382e..c4afa7c 100644 --- a/ShopAPI/ShopAPI/Controllers/ProductController.cs +++ b/ShopAPI/ShopAPI/Controllers/ProductController.cs @@ -24,7 +24,7 @@ namespace ShopAPI.Controllers var products = await _productService.GetALLAsync(); return Ok(products); } - + // Get api/product/{id} [HttpGet("{id}")] [AllowAnonymous]