Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update url in client #15

Merged
merged 2 commits into from
Nov 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"