Fix: 대시보드 조회 API 장소 해결

This commit is contained in:
cyjadela 2025-10-31 14:06:55 +09:00
parent af53c80439
commit 82c6873450
2 changed files with 4107 additions and 2 deletions

File diff suppressed because it is too large Load Diff

View File

@ -103,8 +103,8 @@ public class DashboardDTO {
.meetingId(meeting.getMeetingId())
.title(meeting.getTitle())
.startTime(meeting.getScheduledAt())
.endTime(null) // Meeting 도메인에 endTime이 없음
.location(null) // Meeting 도메인에 location이 없음
.endTime(meeting.getEndTime())
.location(meeting.getLocation())
.participantCount(meeting.getParticipants() != null ? meeting.getParticipants().size() : 0)
.status(meeting.getStatus())
.userRole(currentUserId.equals(meeting.getOrganizerId()) ? "CREATOR" : "PARTICIPANT")