-
Notifications
You must be signed in to change notification settings - Fork 1
축제 상세조회 구현 및 명소 리팩토링 #43
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
Conversation
- 명소 상세조회 조회 쿼리 최적화 - 이미지 반환값 단일값 -> 리스트 변경 - 명소 타입 반환값 한글 -> 영어 변경
- isSuccess가 is_success가 아닌 success로 표시되는 현상 해결
|
Caution Review failedThe pull request is closed. WalkthroughThis change set refactors and extends the festival and place domain models, DTOs, repositories, and services. It introduces new entity relationships, updates JSON serialization strategies, adjusts DTO structures to support multiple images and explicit property naming, and enhances controller and service logic for festival details. Several repository methods and entity mappings are updated for correctness and efficiency. Changes
Sequence Diagram(s)sequenceDiagram
participant Controller as FestivalController
participant Service as FestivalQueryService
participant Repo as FestivalRepository
participant Auth as AuthService
Controller->>Service: getFestivalDetails(festivalId)
Service->>Auth: getCurrentUser()
Service->>Repo: findByIdWithLikesAndImages(festivalId)
Repo-->>Service: Festival (with likes & images)
Service-->>Controller: FestivalDetailsDTO.DetailDto (wrapped in ApiResponse)
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~20 minutes Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (22)
✨ Finishing Touches
🧪 Generate unit tests
🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Create a ticket on our support page for assistance with any issues or questions. 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 (
|
Summary by CodeRabbit
New Features
Improvements
Bug Fixes