Merge pull request #61 from hwanny1128/feat/dev-test

fix: user id 저장 추가 (회의시작 API)
This commit is contained in:
Daewoong Jeon 2025-10-30 18:44:34 +09:00 committed by GitHub
commit e406248572
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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();