Skip to content

Commit

Permalink
bug in meeting scheduling is fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
jitheshm committed Sep 17, 2024
1 parent fe5d3e0 commit 6eea3ae
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 6eea3ae

Please sign in to comment.