From 6eea3ae0b9362dea1a7f401b7b9e230d58011bb9 Mon Sep 17 00:00:00 2001 From: Jithesh M Date: Tue, 17 Sep 2024 19:47:25 +0530 Subject: [PATCH] bug in meeting scheduling is fixed --- .../src/controllers/implementations/MeetingController.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/services/communicationService/src/controllers/implementations/MeetingController.ts b/backend/services/communicationService/src/controllers/implementations/MeetingController.ts index 1bf5000e..221d13aa 100644 --- a/backend/services/communicationService/src/controllers/implementations/MeetingController.ts +++ b/backend/services/communicationService/src/controllers/implementations/MeetingController.ts @@ -24,6 +24,7 @@ export class MeetingController implements IMeetingController { dataObj.scheduledBy = new mongoose.Types.ObjectId(req.user?.decode?.id as string) dataObj.meetingLink = nanoid() await this.meetingService.createMeeting(req.user?.decode?.tenantId as string, req.body); + res.status(201).json({ message: "Meeting Scheduled Successfully"}); } catch (error) { console.log(error);