aboutsummaryrefslogtreecommitdiff
path: root/src/constants/api.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2021-02-11 12:23:03 -0500
committerGitHub <noreply@github.com>2021-02-11 12:23:03 -0500
commitd768712304ccdb016f8bef2a122fd25c01710a67 (patch)
treebad1bc9b04b91d4ae983343dad9971ab73d3071a /src/constants/api.ts
parent0e9456692e9d0d0d0e8da483549b386c9af8df55 (diff)
parent952eb1b9b58362cc4ead737554872197ae8a89b1 (diff)
Merge pull request #232 from IvanIFChen/tma639-new-version-available
[TMA-639] New Version Available
Diffstat (limited to 'src/constants/api.ts')
-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/';