aboutsummaryrefslogtreecommitdiff
path: root/src/constants
diff options
context:
space:
mode:
authorShravya Ramesh <37447613+shravyaramesh@users.noreply.github.com>2021-02-11 14:06:04 -0800
committerGitHub <noreply@github.com>2021-02-11 14:06:04 -0800
commitbcede9945a10ce7bf67aeeaf7f94e1a8984e7c0d (patch)
tree229e130c90307507e68f17b016f81cf310822ccf /src/constants
parentda61f04d037d92fce7cf9852a3be79eb41158d5a (diff)
parent2561d20e17a697726d6b77accf79c9da2d1f6ef6 (diff)
Merge branch 'master' into tma641-animation-tutorial
Diffstat (limited to 'src/constants')
-rw-r--r--src/constants/api.ts2
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/';