-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Applicant time slots are now merged together #150
base: main
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Venter litt med denne til jeg har testet det med algoritmen |
Har ikke sett på koden, men basert på beskrivelsen, så virker det som en klok idé som også skal gå fint med tanke på algoritmen. Fjerne draft og klar til å reviewes? |
Kjører en test med algoritmen først🙌 |
…45-merge-applicant-available-times
All looks good🚀🚀 |
Available times are merged together instead of sending each 30min slots, resulting in very big objects beeing stored in each applicant
Example availableTime slots with this branch:
[ { "start": "2024-07-22T08:00:00.000Z", "end": "2024-07-22T16:00:00.000Z" }, { "start": "2024-07-23T08:00:00.000Z", "end": "2024-07-23T11:00:00.000Z" }, { "start": "2024-07-23T11:30:00.000Z", "end": "2024-07-23T16:00:00.000Z" }, { "start": "2024-07-24T08:00:00.000Z", "end": "2024-07-24T09:30:00.000Z" }, { "start": "2024-07-24T12:30:00.000Z", "end": "2024-07-24T16:00:00.000Z" }, { "start": "2024-07-25T08:00:00.000Z", "end": "2024-07-25T14:30:00.000Z" }, { "start": "2024-07-25T15:00:00.000Z", "end": "2024-07-25T16:00:00.000Z" }, { "start": "2024-07-26T08:00:00.000Z", "end": "2024-07-26T13:00:00.000Z" }, { "start": "2024-07-26T13:30:00.000Z", "end": "2024-07-26T16:00:00.000Z" } ]