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.
📝 요약
내가 요청한 정산 view를 구성하는 데이터를 반환하기 위한 api를 개발하였습니다
유저가 요청한 정산 중 현재 진행중인 정산과 완료된 정산을 구분하여 response dto 를 구성하였고, 이에 대한 간단한 테스트 코드를 작성하여 테스트가 통과하는 것을 확인하였습니다
이슈 번호 : #43
🔖 변경 사항
기존 PayService 에 유저가 요청한 정산에 대한 정보와, 유저가 요청받은 정산에 대한 정보를 받아오는 코드가 있었습니다.
이 코드에 각각 정산의 상태가 현재 진행중인지 완료된 정산인지를 구분하여 정산 정보를 return 할 수 있도록 boolean isComplete 파라미터를 추가하였습니다
✅ 리뷰 요구사항
📸 확인 방법 (선택)
PatServiceTest 클래스에서 테스트 코드를 참고하시면 됩니다.
현재 유저가 같은 스페이스 내의 다른 유저에게 요청한 정산이 현재 진행중인 경우, 완료된 경우에 대한 테스트 코드를 작성해두었습니다.
📌 PR 진행 시 이러한 점들을 참고해 주세요