Skip to content

Commit 02bab8a

Browse files
committed
[Feat] Add GET_EVENTS endpoint to calendar API configuration
1 parent e2d60c1 commit 02bab8a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Frontend/config/apiConfig.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ export const API_ENDPOINTS = {
6363

6464
CALENDAR: {
6565
EVENTS: `${API_BASE_URL}/calendar/events`,
66+
GET_EVENTS: `${API_BASE_URL}/calendar/events`,
6667
CREATE_EVENT: `${API_BASE_URL}/calendar/events`,
6768
UPDATE_EVENT: (id: string) => `${API_BASE_URL}/calendar/events/${id}`,
6869
DELETE_EVENT: (id: string) => `${API_BASE_URL}/calendar/events/${id}`,

0 commit comments

Comments
 (0)