aboutsummaryrefslogtreecommitdiff
path: root/src/constants/api.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@tagg.id>2021-05-10 20:18:47 -0400
committerGitHub <noreply@github.com>2021-05-10 20:18:47 -0400
commitc05aa193a244c052f7950104b859a557922e8983 (patch)
tree9573402104499453dcd761a0289187bdbc4ea005 /src/constants/api.ts
parent49136f4056cb40f43d282d534aacf27076f47d8b (diff)
parent14c4ec9f5350c11b263e3e84b6f5298cb592de9b (diff)
Merge pull request #411 from grusuTagg/tma823-onboarding-revamp
[TMA-823] Onboarding Revamp
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 d45616a1..e5ce9e77 100644
--- a/src/constants/api.ts
+++ b/src/constants/api.ts
@@ -12,6 +12,7 @@ const API_URL: string = BASE_URL + 'api/';
export const LOGIN_ENDPOINT: string = API_URL + 'login/';
export const VERSION_ENDPOINT: string = API_URL + 'version/v2/';
export const REGISTER_ENDPOINT: string = API_URL + 'register/';
+export const REGISTER_VALIDATE_ENDPOINT: string = API_URL + 'register/validate/';
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/';