Conversation
- ClubController -> ClubProfileController, ClubSearchController - ClubCommandService -> ClubProfileService - remove ClubDetailedPageService
- 봉사,종교,취미교양,학술,운동,공연 순서로 정렬
|
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Test Results1 tests 1 ✅ 0s ⏱️ Results for commit a2dd02c. ♻️ This comment has been updated with latest results. |
PororoAndFriends
left a comment
There was a problem hiding this comment.
저도 ClubController에 너무 기능이 몰려있다 생각했는데 기능에따라 잘 분리된것 같아서 좋네요! 수고하셨습니당
| ALWAYS("상시모집", 1), | ||
| OPEN("모집중", 2), | ||
| CLOSED("모집마감", 3), | ||
| UPCOMING("모집예정", 4), |
| RecruitmentStatus(String description, int order) { | ||
| this.description = description; | ||
| this.order = order; | ||
| } |
There was a problem hiding this comment.
우선 순위를 의미합니다. priority로 바꾸면 더 직관적이겠네요. 바꾸겠습니다.
#️⃣연관된 이슈
#244
📝작업 내용
Club Controller 분리
키워드 정렬 기준이 봉사,종교,취미교양,학술,운동,공연 순서로 정렬하되 모집중을 우선하여 표시
ClubDetail 관련 클래스, 메소드명 변경
보류
중점적으로 리뷰받고 싶은 부분
Club Controller 분리에 대한 의견을 받고 싶습니다.