-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/#25 cicd pipeline #38
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
|
Caution Review failedThe pull request is closed. Walkthrough이번 변경에서는 StoreController에서 Swagger/OpenAPI 어노테이션이 제거되었으며, 검색 엔드포인트 메서드의 위치가 조정되었습니다. Store 엔티티에는 Lombok의 @Builder.Default가 추가되어 빌더 사용 시 기본값이 보장됩니다. Store 검색 관련 메서드와 쿼리가 서비스, 레포지토리, 서비스 구현에 새롭게 추가되었습니다. Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant StoreController
participant StoreService
participant StoreRepository
participant StoreImageRepository
Client->>StoreController: GET /stores/search?name={name}
StoreController->>StoreService: searchStoresByName(name)
StoreService->>StoreRepository: findByNameContainingIgnoreCaseAndDeletedFalse(name)
StoreRepository-->>StoreService: List<Store>
loop 각 Store에 대해
StoreService->>StoreImageRepository: findByStoreId(store.id)
StoreImageRepository-->>StoreService: List<StoreImage>
StoreService->>StoreService: StoreReadDto로 매핑
end
StoreService-->>StoreController: List<StoreReadDto>
StoreController-->>Client: ResponseEntity<List<StoreReadDto>>
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (5)
✨ Finishing Touches
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:
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 (
|
작업 요약
Issue Link
문제점 및 어려움
해결 방안
Reference
Summary by CodeRabbit
신규 기능
버그 수정
기타