Skip to content

Commit

Permalink
[CHORE] 프로젝트 내 회고 리스트 조회 API 엔드포인트 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yeseul106 committed Jul 19, 2023
1 parent 0dfdfd6 commit 27f2a3b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public ApiResponse<ReviewDetailResponseDto> getMyReviewDetail(@PathVariable Long
return ApiResponse.success(SuccessStatus.GET_MY_REVIEWS_DETAIL_SUCCESS, reviewService.getMyReviewDetail(memberId, projectId, startDate, endDate));
}

@GetMapping("member/{memberId}/project/{projectId}/review")
@GetMapping("member/{memberId}/project/{projectId}/reviews")
public ApiResponse<MyReviewProjectResponseDto> getMyReviewProjects(@PathVariable Long memberId, @PathVariable Long projectId) {
return ApiResponse.success(SuccessStatus.GET_PROJECT_MY_REVIEWS_SUCCESS, reviewService.getMyReviewProjects(memberId, projectId));
}
Expand Down

0 comments on commit 27f2a3b

Please sign in to comment.