From 31ea0bf6ce2cbcfe19290970ca46c4a8f4403818 Mon Sep 17 00:00:00 2001 From: iamkiddy Date: Thu, 4 Dec 2025 16:31:49 +0000 Subject: [PATCH] Update API URLs for meeting start and end endpoints to use correct path structure Refactor the startMeeting and endMeeting functions in api_urls.ts to point to the correct API paths for meeting management. This change ensures consistency in the API structure and aligns with the overall meeting control functionality. --- lib/api_urls.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/api_urls.ts b/lib/api_urls.ts index aa36240..4248b65 100644 --- a/lib/api_urls.ts +++ b/lib/api_urls.ts @@ -29,8 +29,8 @@ export const API_ENDPOINTS = { availabilityConfig: `${API_BASE_URL}/meetings/availability/config/`, checkDateAvailability: `${API_BASE_URL}/meetings/availability/check/`, availabilityOverview: `${API_BASE_URL}/meetings/availability/overview/`, - startMeeting: (id: string) => `${API_BASE_URL}/meetings/appointments/${id}/start/`, - endMeeting: (id: string) => `${API_BASE_URL}/meetings/appointments/${id}/end/`, + startMeeting: (id: string) => `${API_BASE_URL}/meetings/meetings/${id}/start/`, + endMeeting: (id: string) => `${API_BASE_URL}/meetings/meetings/${id}/end/`, }, } as const; -- 2.39.5