회의록 공유 기능 제거에 따른 대시보드 조회 시퀀스 수정

- meeting-대시보드조회.puml에서 공유받은 회의록 조회 로직 제거
- findSharedMinutes(userId) 메서드 호출 및 관련 시퀀스 삭제
- 응답 데이터 구조에서 sharedMinutes 필드 제거
- 프로토타입 변경사항 반영 완료

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Minseo-Jo
2025-10-23 11:14:05 +09:00
parent a551235ad7
commit 8f7e3fc1b7
4 changed files with 25 additions and 12 deletions
@@ -61,16 +61,6 @@ else Cache Miss
MinutesRepo --> Service: List<Minutes>
deactivate MinutesRepo
' 공유받은 회의록 조회
Service -> MinutesRepo: findSharedMinutes(userId)
activate MinutesRepo
MinutesRepo -> DB: 공유받은 회의록 조회
activate DB
DB --> MinutesRepo: 공유받은 회의록 목록
deactivate DB
MinutesRepo --> Service: List<Minutes>
deactivate MinutesRepo
' 통계 정보 조회
Service -> MeetingRepo: countUpcomingMeetings(userId)
activate MeetingRepo
@@ -124,7 +114,6 @@ note over Controller
"upcomingMeetings": [...],
"activeTodos": [...],
"recentMinutes": [...],
"sharedMinutes": [...],
"statistics": {
"upcomingMeetingsCount": n,
"activeTodosCount": n,