mirror of
https://github.com/hwanny1128/HGZero.git
synced 2025-12-06 05:36:23 +00:00
Fix: 대시보드 조회 API 장소 해결
This commit is contained in:
parent
af53c80439
commit
82c6873450
File diff suppressed because it is too large
Load Diff
@ -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")
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user