GET Meeting by Day, Week, Month testing endpoints found in the test page instead of the create meeting page
Each route accepts a startState in the URL query params instead of adding it to the body
Implementation Notes:
Week and Month routes get the meetings of the entire week or month of the provided startDate. For example for the month route, passing in "2024-08-29" will get all the meetings of august, while "2024-09-05" will get all the meetings of September. The same applies to the week route; not getting the next 7 days after the startDate but the entire week of which the startDate is included in.
Completes #17 with the following difference:
Implementation Notes: