We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2fcb83f commit 93dd0c5Copy full SHA for 93dd0c5
src/Basket/Basket.API/Controllers/BasketController.cs
@@ -46,7 +46,7 @@ public async Task<ActionResult<BasketCart>> UpdateBasket([FromBody]BasketCart ba
46
47
[HttpDelete("{userName}")]
48
[ProducesResponseType(typeof(void), (int)HttpStatusCode.OK)]
49
- public async Task<IActionResult> DeleteBasketByIdAsync(string userName)
+ public async Task<IActionResult> DeleteBasket(string userName)
50
{
51
return Ok(await _repository.DeleteBasket(userName));
52
}
0 commit comments