-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[FEAT] 테마별 데일리 루틴 목록 조회(public, 온보딩) 기능 구현 #300
Merged
Merged
Conversation
This file contains 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
Chan531
reviewed
Jun 26, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다!
리뷰 답변 받고 승인하도록 하겠습니다!
(사실 내꺼부터 먼저 머지할라고....ㅋㅋㅋㅋ)
src/main/java/com/soptie/server/routine/controller/v2/docs/DailyRoutineControllerV2Docs.java
Show resolved
Hide resolved
src/main/java/com/soptie/server/routine/controller/v2/DailyRoutineControllerV2.java
Show resolved
Hide resolved
.../com/soptie/server/routine/controller/v2/dto/response/DailyRoutineListAcquireResponseV2.java
Outdated
Show resolved
Hide resolved
src/test/java/com/soptie/server/routine/service/integration/RoutineServiceIntegrationTest.java
Outdated
Show resolved
Hide resolved
.../com/soptie/server/routine/controller/v2/dto/response/DailyRoutineListAcquireResponseV2.java
Show resolved
Hide resolved
Chan531
approved these changes
Jun 27, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
답변 모두 확인했습니다!
수고하셨습니다!
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.
✨ Related Issue
📝 기능 구현 명세
🐥 추가적인 언급 사항
파라미터 값으로 받은 테마 기준으로 루틴을 조회하는 기능이기 때문에, 테마 정보는 id 외에 생략했습니다.
파라미터 값으로 받은 테마 id 목록 값을 순서 그대로 반환하도록 했습니다.
파라미터 값으로 받는 theme id 목록에서 중복을 허용하지 않기 위해 Set 자료구조를 사용했습니다.