diff --git a/client/src/serviceFiles/constants.ts b/client/src/serviceFiles/constants.ts index e4f51c1..6ca0fa1 100644 --- a/client/src/serviceFiles/constants.ts +++ b/client/src/serviceFiles/constants.ts @@ -69,13 +69,13 @@ export let warehousesInit = [ } ] export const SIGN_IN_URL = "" -export const GET_ALL_CELLS_URL = "" +export const GET_ALL_CELLS_URL = "Cells/get" export const GET_MY_CELLS_URL = "" export const GET_FREE_CELLS_URL = "" -export const POST_NEW_CELL_URL = "" -export const GET_ALL_EVENTS_URL = "" +export const POST_NEW_CELL_URL = "Cells/post" +export const GET_ALL_EVENTS_URL = "Events/get" export const POST_NEW_EVENT_URL = "" -export const GET_ALL_USERS_URL = "" -export const POST_NEW_USER_URL = "" -export const GET_ALL_WAREHOUSES_URL = "" -export const POST_NEW_WAREHOUSE_URL = "" \ No newline at end of file +export const GET_ALL_USERS_URL = "Users/get" +export const POST_NEW_USER_URL = "Users/post" +export const GET_ALL_WAREHOUSES_URL = "Warehouses/get" +export const POST_NEW_WAREHOUSE_URL = "Warehouses/post" \ No newline at end of file