Closed shoeone96 closed 1 month ago
name: "✅ Feature" about: Feature 요구 사항을 입력해주세요. title: "✅ Feature" labels: ✅ Feature assignees: ''
리뷰 도움돼요를 누를 때 이미 도움돼요를 누른 리뷰인지 확인하는 로직 추가
@Transactional public void insertLike(Long reviewId, Long memberId) { reviewLikeRepository.findByMemberIdAndReviewId(memberId, reviewId) .ifPresent(reviewLike -> { throw new BbangleException(BbangleErrorCode.REVIEW_ALREADY_LIKED); }); reviewLikeRepository.save(ReviewLike.builder() .memberId(memberId) .reviewId(reviewId) .build()); }
추가로 리뷰 도움돼요를 누르는 API가 GET 요청으로 되어 있어 POST 요청으로 변경
name: "✅ Feature" about: Feature 요구 사항을 입력해주세요. title: "✅ Feature" labels: ✅ Feature assignees: ''
History
🚀 Major Changes & Explanations
리뷰 도움돼요를 누를 때 이미 도움돼요를 누른 리뷰인지 확인하는 로직 추가
추가로 리뷰 도움돼요를 누르는 API가 GET 요청으로 되어 있어 POST 요청으로 변경
📷 Test Image
💡 ETC