From 44345135b90c17be6b37f7f1d42bb6298447a263 Mon Sep 17 00:00:00 2001 From: David Fowler Date: Wed, 14 Jun 2023 20:46:08 -0700 Subject: [PATCH] Forgot one --- .../Web.Bff.Shopping/aggregator/Controllers/BasketController.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/ApiGateways/Web.Bff.Shopping/aggregator/Controllers/BasketController.cs b/src/ApiGateways/Web.Bff.Shopping/aggregator/Controllers/BasketController.cs index f2915694a..59550621b 100644 --- a/src/ApiGateways/Web.Bff.Shopping/aggregator/Controllers/BasketController.cs +++ b/src/ApiGateways/Web.Bff.Shopping/aggregator/Controllers/BasketController.cs @@ -17,7 +17,6 @@ public class BasketController : ControllerBase [HttpPost] [HttpPut] [ProducesResponseType(StatusCodes.Status400BadRequest)] - [ProducesResponseType(typeof(BasketData), StatusCodes.Status200OK)] public async Task> UpdateAllBasketAsync([FromBody] UpdateBasketRequest data) { if (data.Items == null || !data.Items.Any()) @@ -75,7 +74,6 @@ public class BasketController : ControllerBase [HttpPut] [Route("items")] [ProducesResponseType(StatusCodes.Status400BadRequest)] - [ProducesResponseType(typeof(BasketData), (int)HttpStatusCode.OK)] public async Task> UpdateQuantitiesAsync([FromBody] UpdateBasketItemsRequest data) { if (!data.Updates.Any())