Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: 응원톡 생성 및 리스트 가져오기 API 작성 #199

Merged
merged 9 commits into from
Jan 26, 2023
Prev Previous commit
Next Next commit
chore: 오타수정
  • Loading branch information
sanbonai06 committed Jan 26, 2023
commit e4feb7673b6fe1e91733a8c435bddf8756aca163
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ public CreateOrderResponse execute(CreateOrderRequest createOrderRequest) {
Long cartId = createOrderRequest.getCartId();
if (couponId == null) {
return CreateOrderResponse.from(
createOrderService.WithOutCoupon(cartId, user.getId()), user.getProfile());
createOrderService.withOutCoupon(cartId, user.getId()), user.getProfile());
}
return CreateOrderResponse.from(
createOrderService.withCoupon(cartId, user.getId(), couponId), user.getProfile());