diff options
author | Ivan Chen <ivan@tagg.id> | 2021-02-11 16:49:31 -0500 |
---|---|---|
committer | Ivan Chen <ivan@tagg.id> | 2021-02-11 16:49:31 -0500 |
commit | 97e73f47622df32859964df4c94a4d419590bee2 (patch) | |
tree | 9e2fdacee1040a9e9f975a329846dfa60cf5f3a4 /src/constants/api.ts | |
parent | dc2da789ed0f440e0da8020f891bb490536a38fe (diff) | |
parent | 3bc52c4e021199c5b546d51cd238aad9a96852a7 (diff) |
Merge branch 'master' into tma255-taggs-bar
# Conflicts:
# src/components/common/SocialLinkModal.tsx
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index 32631be0..165bd550 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -3,7 +3,7 @@ const BASE_URL: string = 'http://127.0.0.1:8000/'; // local server const API_URL: string = BASE_URL + 'api/'; export const LOGIN_ENDPOINT: string = API_URL + 'login/'; -export const LOGOUT_ENDPOINT: string = API_URL + 'logout/'; +export const VERSION_ENDPOINT: string = API_URL + 'version/'; export const REGISTER_ENDPOINT: string = API_URL + 'register/'; export const EDIT_PROFILE_ENDPOINT: string = API_URL + 'edit-profile/'; export const SEND_OTP_ENDPOINT: string = API_URL + 'send-otp/'; |