aboutsummaryrefslogtreecommitdiff
path: root/src/constants/api.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2020-09-30 12:49:30 -0400
committerGitHub <noreply@github.com>2020-09-30 12:49:30 -0400
commit7df032689e61110914e063b53af62c5b0922014d (patch)
treea5ee211bc1c59963922cae763e4c0c3f88596939 /src/constants/api.ts
parent116d9e7052e1dc64ec023c8480138d5abe9fa81e (diff)
updated onboarding to use edit-profile endpoint (#41)
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r--src/constants/api.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts
index e3dacccc..e4fed13e 100644
--- a/src/constants/api.ts
+++ b/src/constants/api.ts
@@ -4,6 +4,7 @@ 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 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/';
export const VERIFY_OTP_ENDPOINT: string = API_URL + 'verify-otp/';
export const PROFILE_INFO_ENDPOINT: string = API_URL + 'user-profile-info/';