diff options
author | Ivan Chen <ivan@tagg.id> | 2021-03-25 15:00:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-25 15:00:48 -0400 |
commit | 99de9c8402f470ead242a81510dc2764ae7d9e66 (patch) | |
tree | 7bf2feb0f1a57f1c695ddea51afb9e95abf03f0a /src/constants/api.ts | |
parent | 75c08439fe04666a63431bf56e4b2fa7fb05cbbe (diff) | |
parent | 54de628b27647099170bc6d5eea7110c8dd5e8f0 (diff) |
Merge pull request #323 from IvanIFChen/tma698-api-profile
[TMA-698] api/profile
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index 1e2e887a..6afdf384 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -9,6 +9,7 @@ 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 USER_PROFILE_ENDPOINT: string = API_URL + 'profile/'; export const PROFILE_INFO_ENDPOINT: string = API_URL + 'user-profile-info/'; export const HEADER_PHOTO_ENDPOINT: string = API_URL + 'header-pic/'; export const PROFILE_PHOTO_ENDPOINT: string = API_URL + 'profile-pic/'; |