From 131d690e8f2be989295ebc6e885bac2f977f6603 Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Wed, 11 Dec 2024 00:15:40 +0000 Subject: [PATCH] Update Src/Controllers/ProductSpecificationController.cs --- Src/Controllers/ProductSpecificationController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Src/Controllers/ProductSpecificationController.cs b/Src/Controllers/ProductSpecificationController.cs index 8a1c0a998..f2381879b 100644 --- a/Src/Controllers/ProductSpecificationController.cs +++ b/Src/Controllers/ProductSpecificationController.cs @@ -41,6 +41,7 @@ public async Task UpdateSpecification(int productId, int specific } await _context.UpdateProductSpecificationAsync(specification, productId, token); // Additional endpoints for POST and PUT will be added here + return NoContent(); } } }