fix: user id 저장 추가 (회의시작 API)

This commit is contained in:
djeon 2025-10-30 18:43:54 +09:00
parent 47385958d3
commit e87f916657

View File

@ -226,6 +226,7 @@ public class MeetingService implements
.sections(List.of())
.status("DRAFT")
.version(1)
.userId(meeting.getOrganizerId())
.createdBy(meeting.getOrganizerId()) // TODO: 실제 사용자 ID 사용
.createdAt(LocalDateTime.now())
.build();