Feat/퀴즈 재구현 진짜최종#106
Hidden character warning
Conversation
|
Caution Review failedThe pull request is closed. WalkthroughRealQuiz 엔티티에 완료 여부와 생성 시각 필드가 추가되었다. 응답 DTO 구조가 변경되고 새로운 RealQuizResponseDTO가 추가되었다. 컨트롤러의 매핑이 일부 변경되었고, 실질 로직을 담당하는 RealQuizService가 새로 도입되었다. 보안 설정에 RealQuiz 엔드포인트 공개 허용이 추가되었다. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor U as User
participant C as RealQuizController
participant S as RealQuizService
participant RQ as RealQuizRepo
participant UQ as UserQuizRepo
rect rgb(240,248,255)
note over U,C: GET /api/v1/realQuiz?quizType=...
U->>C: getRealQuiz(quizType)
C->>S: getRealQuiz(user, quizType)
S->>UQ: findByUserAndIncomplete(user)
alt 기존 할당 없음
S->>RQ: findByType(quizType)
S->>S: 랜덤 선택
S->>UQ: save(UserQuiz 할당)
else 기존 할당 있음
S->>RQ: findById(assigned.quizId)
end
S-->>C: RealQuizResponseDTO
C-->>U: 200 OK + DTO
end
rect rgb(245,255,240)
note over U,C: POST /api/v1/realQuiz/{id}/answer
U->>C: getRealQuizAnswer(quizId, request)
C->>S: getRealQuizAnswer(quizId, request)
S->>RQ: findById(quizId)
S->>S: 정답 비교, isCompleted=true 설정
S-->>C: RealQuizAnswerResponseDTO
C-->>U: 200 OK + DTO
end
rect rgb(255,250,240)
note over C,S: POST /api/v1/realQuiz/create
C->>S: createRealQuiz(request)
S->>RQ: save(RealQuiz isCompleted=false)
S->>RQ: saveAll(Options)
S-->>C: RealQuizResponseDTO
end
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60 minutes Suggested labels
Suggested reviewers
Poem
Tip 🔌 Remote MCP (Model Context Protocol) integration is now available!Pro plan users can now connect to remote MCP servers from the Integrations page. Connect with popular remote MCPs such as Notion and Linear to add more context to your reviews and chats. 📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 💡 Knowledge Base configuration:
You can enable these sources in your CodeRabbit configuration. 📒 Files selected for processing (3)
✨ Finishing Touches
🧪 Generate unit tests
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. CodeRabbit Commands (Invoked using PR/Issue comments)Type Other keywords and placeholders
CodeRabbit Configuration File (
|
Feat/퀴즈 재구현 진짜최종
Summary by CodeRabbit
New Features
API Changes
Security