Conversation
마이페이지에서 사용할 내 리뷰 조회 API를 구현했습니다. - MyReviewInfoDto 생성 - ReviewController.getMyReviews() 구현 - ReviewService.getMyReviews() 구현 - ReviewRepository.findReviewsWithDetailsByMemberId() 구현
내 리뷰 조회 API의 서비스 메서드에 대하여 테스트 코드를 구현했습니다. 테스트 케이스는 다음과 같습니다. - 내 리뷰 조회 성공 (작성한 리뷰가 있을 때) - 내 리뷰 조회 성공 (작성한 리뷰가 없을 때)
moonxxpower
approved these changes
Aug 12, 2025
moonxxpower
approved these changes
Aug 12, 2025
src/main/java/com/server/running_handai/domain/review/controller/ReviewController.java
Outdated
Show resolved
Hide resolved
Contributor
Author
|
여기도 제가 리뷰 정렬 조건이 있는 줄 몰랐네요😅 리뷰 최신순 정렬로 수정해놓겠습니다! |
내 리뷰 조회 API의 엔드포인트를 /api/me로 시작하도록 수정했습니다.
내 리뷰 조회 시 리뷰들이 최신순으로 반환되도록 정렬 조건을 추가했습니다.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

✏️ 연관 이슈
#95
⛳ 작업 내용
MyReviewInfoDto생성💬리뷰 요구사항
.
📍 참고사항
.