Skip to content

Commit

Permalink
fix: 머지 실수 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
zzoe2346 committed Nov 9, 2024
1 parent a3e9011 commit efc64f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public PointChargeResponse savePointChargeRequest(Long memberId, int price) {
throw new ConflictException("이미 진행중인 포인트 충전 요청이 존재합니다.");
}

pointLogRepository.save(new PointLog(PointLog.Content.CHARGE_REQUEST.getMessage(), member, price, PointLog.Status.CHARGE_REQUEST));
pointLogRepository.save(new PointLog(PointLog.Content.CHARGE_REQUEST, member, price, PointLog.Status.CHARGE_REQUEST));

kakaoMessageService.sendPointChargeRequestReceivedMessage(member.getEmail(), price, member.getName(), member.getDepositMessage());

Expand Down

0 comments on commit efc64f9

Please sign in to comment.