Skip to content

Commit

Permalink
Update constants.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
polinaKoroleva05 committed Nov 12, 2024
1 parent 7a31d87 commit 9cc7d82
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions client/src/serviceFiles/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,14 +68,14 @@ export let warehousesInit = [
cells: [1, 3211, 10]
}
]
export const SIGN_IN_URL = "/api/Users/auth"
export const GET_ALL_CELLS_URL = "/api/Cells/all"
export const SIGN_IN_URL = "http://warehouse2:8080/Users/auth"
export const GET_ALL_CELLS_URL = "http://warehouse2:8080/Cells/all"
export const GET_MY_CELLS_URL = ""
export const GET_FREE_CELLS_URL = ""
export const POST_NEW_CELL_URL = "/api/Cells/new"
export const GET_ALL_EVENTS_URL = "/api/Events/all"
export const POST_NEW_CELL_URL = "http://warehouse2:8080/Cells/new"
export const GET_ALL_EVENTS_URL = "http://warehouse2:8080/Events/all"
export const POST_NEW_EVENT_URL = ""
export const GET_ALL_USERS_URL = "/api/Users/all"
export const POST_NEW_USER_URL = "/api/Users/new"
export const GET_ALL_WAREHOUSES_URL = "/api/Warehouses/all"
export const POST_NEW_WAREHOUSE_URL = "/api/Warehouses/new"
export const GET_ALL_USERS_URL = "http://warehouse2:8080/Users/all"
export const POST_NEW_USER_URL = "http://warehouse2:8080/Users/new"
export const GET_ALL_WAREHOUSES_URL = "http://warehouse2:8080/Warehouses/all"
export const POST_NEW_WAREHOUSE_URL = "http://warehouse2:8080/Warehouses/new"

0 comments on commit 9cc7d82

Please sign in to comment.