We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bookings collection consists of objects of type:
{ roomId: ObjectId date: ISODate timeslots []: array of Strings }
The startTime and endTime arrays are filtered versions of INTERVALS:
INTERVALS
axios.get(`http://localhost:8008/api/bookings/${room}/${date}`) .then(res => { const bookings = res.data[0].timeslots; if(bookings) { INTERVALS = INTERVALS.filter(el => bookings.indexOf(el) < 0); } }); }
Issue: Find a solution how to handle overlapping booking time slots. Select a meeting from 8:30 to 11:00 while 9:00 - 10:30 is booked.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
bookings collection consists of objects of type:
The startTime and endTime arrays are filtered versions of
INTERVALS
:Issue:
Find a solution how to handle overlapping booking time slots.
Select a meeting from 8:30 to 11:00 while 9:00 - 10:30 is booked.
The text was updated successfully, but these errors were encountered: