aboutsummaryrefslogtreecommitdiff
path: root/src/constants/api.ts
diff options
context:
space:
mode:
authorGeorge Rusu <george@tagg.id>2021-05-10 16:06:41 -0700
committerGeorge Rusu <george@tagg.id>2021-05-10 16:06:41 -0700
commit4859c58b1d6bebc7f8a1b4e7345393a1dfdc33d8 (patch)
treee0f85498283984305082051d6f6e14482d6346ec /src/constants/api.ts
parent51d940e5d90d1f3ef0e94eeeb065a681d68d4973 (diff)
updating state to check taken email/usernames
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 45b6e8ae..53392fb5 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/';