This commit is contained in:
2025-12-18 11:36:38 +03:30
parent 1c03e7ccf0
commit 65cf24f68b
@@ -169,8 +169,8 @@ export class CartController {
setAllCartParams( setAllCartParams(
@UserId() userId: string, @UserId() userId: string,
@RestId() restaurantId: string, @RestId() restaurantId: string,
@Body() setCarDeliveryDto: SetCarDeliveryDto, @Body() dto: SetAllCartParmsDto,
) { ) {
return this.cartService.setCarDelivery(userId, restaurantId, setCarDeliveryDto); return this.cartService.setAllCartParams(userId, restaurantId, dto);
} }
} }