aboutsummaryrefslogtreecommitdiff
path: root/src/constants/api.ts
diff options
context:
space:
mode:
authorHusam Salhab <47015061+hsalhab@users.noreply.github.com>2020-12-22 11:49:50 -0500
committerGitHub <noreply@github.com>2020-12-22 11:49:50 -0500
commit49ed044f5103cf6288fcf5b3ff6d3d720795860c (patch)
tree0bb15247eff667636c9d96863e5a9f78d8179f4e /src/constants/api.ts
parent8dfc9d14848c7979f2df71a0d70c1e56c5510831 (diff)
update endpoints (#143)
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r--src/constants/api.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts
index 5a752e7b..f9ac3d7c 100644
--- a/src/constants/api.ts
+++ b/src/constants/api.ts
@@ -8,8 +8,9 @@ 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/';
-export const COVER_PHOTO_ENDPOINT: string = API_URL + 'large-profile-pic/';
-export const AVATAR_PHOTO_ENDPOINT: string = API_URL + 'small-profile-pic/';
+export const HEADER_PHOTO_ENDPOINT: string = API_URL + 'header-pic/';
+export const PROFILE_PHOTO_ENDPOINT: string = API_URL + 'profile-pic/';
+export const PROFILE_PHOTO_THUMBNAIL_ENDPOINT: string = API_URL + 'profile-thumbnail/';
export const GET_IG_POSTS_ENDPOINT: string = API_URL + 'posts-ig/';
export const GET_FB_POSTS_ENDPOINT: string = API_URL + 'posts-fb/';
export const GET_TWITTER_POSTS_ENDPOINT: string = API_URL + 'posts-twitter/';