Skip to content
This repository was archived by the owner on Aug 6, 2024. It is now read-only.

Commit 95b7318

Browse files
committed
Disable alter meeting changing meeting date
1 parent 5321258 commit 95b7318

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/graphql/resolvers/Mutation/alterMeeting.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ export default async (
7575
"Start time is not valid or is in the past (if you're using safari, make sure your date is in mm/dd/yyyy format)"
7676
);
7777
}
78+
/* TEMPORARILY COMMENTED OUT TO PREVENT BUG INVOLVING OVERBOOKING
7879
meeting.start = start;
80+
*/
7981
}
8082

8183
if (end) {
@@ -84,7 +86,9 @@ export default async (
8486
"End time is not valid or is in the past (if you're using safari, make sure your date is in mm/dd/yyyy format)"
8587
);
8688
}
89+
/* TEMPORARILY COMMENTED OUT TO PREVENT BUG INVOLVING OVERBOOKING
8790
meeting.end = end;
91+
*/
8892
}
8993

9094
await meeting.save();

0 commit comments

Comments
 (0)