From 70d6e075392743ec8bb66e14dbb1a7c85ead5cf3 Mon Sep 17 00:00:00 2001
From: Wo-ogie <siwall0105@gmail.com>
Date: Tue, 5 Dec 2023 10:11:19 +0900
Subject: [PATCH] =?UTF-8?q?fix:=20meeting=20=EC=83=9D=EC=84=B1=20=EC=8B=9C?=
 =?UTF-8?q?=20=EC=9D=91=EB=8B=B5=20=EB=8D=B0=EC=9D=B4=ED=84=B0=EC=97=90=20?=
 =?UTF-8?q?`confirmedTime`=EC=9D=B4=20=EC=97=86=EB=8A=94=20=EC=98=A4?=
 =?UTF-8?q?=EB=A5=98=20=EC=88=98=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 controllers/meeting.js | 1 +
 1 file changed, 1 insertion(+)

diff --git a/controllers/meeting.js b/controllers/meeting.js
index d4ce8d4..27532ee 100644
--- a/controllers/meeting.js
+++ b/controllers/meeting.js
@@ -124,6 +124,7 @@ exports.createMeeting = async (req, res, next) => {
       availableVotingEndTime: req.body.availableVotingEndTime,
       maxParticipants: req.body.maxParticipants,
       voteExpiresAt: req.body.voteExpiresAt,
+      confirmedTime: null,
     });
     return res.status(201).json(MeetingResponse.from(meeting));
   } catch (error) {
-- 
GitLab