Conversation
Walkthrough이번 변경사항은 마음일지 캘린더 데이터를 조회하는 새로운 API 엔드포인트를 추가하고, 해당 기능을 위한 DTO, 리포지토리, 서비스 계층의 메서드 및 인터페이스를 도입한 것입니다. 모든 변경은 마음일지 캘린더 조회 기능 신설에 집중되어 있습니다. Changes
Sequence Diagram(s)sequenceDiagram
participant Client
participant Controller
participant Service
participant FamilyRepository
participant MaumLogRepository
Client->>Controller: GET /calendar?yearMonth=YYYY-MM
Controller->>Service: getMaumLogCalendar(userDetails, yearMonth)
Service->>FamilyRepository: findByUserUuid(userUuid)
FamilyRepository-->>Service: Family
Service->>MaumLogRepository: countDiariesPerDayByUsersAndMonth(users, startDate, endDate)
MaumLogRepository-->>Service: List<DateCount>
Service->>Service: 집계 및 Map 완성
Service-->>Controller: MaumLogCalendarDto
Controller-->>Client: 200 OK + MaumLogCalendarDto
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~15 minutes Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (5)
Note 🎁 Summarized by CodeRabbit FreeYour organization is on the Free plan. CodeRabbit will generate a high-level summary and a walkthrough for each pull request. For a comprehensive line-by-line review, please upgrade your subscription to CodeRabbit Pro by visiting https://app.coderabbit.ai/login. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
Neibce
added a commit
to 2025-PNU-SW-Hackathon/PNUSW-2025-OnGi-10
that referenced
this pull request
Aug 25, 2025
This file contains hidden or 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
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.
Summary by CodeRabbit