Skip to content

Commit

Permalink
Merge pull request #15 from moevm/koroleva/serverCommunication
Browse files Browse the repository at this point in the history
Update url in client
  • Loading branch information
polinaKoroleva05 authored Nov 9, 2024
2 parents 3ca6a1e + a79fc68 commit 4d85303
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions client/src/serviceFiles/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ""
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"

0 comments on commit 4d85303

Please sign in to comment.