Fix booking API endpoint month format by changing separator from '/' to '-'.

This commit is contained in:
mohammad
2025-07-24 13:19:55 +03:00
parent 04d1c37308
commit 5a35f8e62e

View File

@ -147,6 +147,6 @@ abstract class ApiEndpoints {
static const String bookableSpaces = '/bookable-spaces'; static const String bookableSpaces = '/bookable-spaces';
static const String getCalendarEvents = '/api'; static const String getCalendarEvents = '/api';
static const String getBookings = static const String getBookings =
'/bookings?month={mm}%2F{yyyy}&space={space}'; '/bookings?month={mm}-{yyyy}&space={space}';
} }