diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2020-12-30 11:36:44 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-30 14:36:44 -0500 |
commit | 38661e00281363b0f4ad32f0b29d739e1ca09164 (patch) | |
tree | 316cd837b6cc6ae24783f1d93d6c9ee7fb898f68 /src/constants/api.ts | |
parent | bd2f89805d0bb1c2f1d08fe8d91099aa4f109d35 (diff) |
[TMA - 457]Change followers to friends (#149)
* One commit to replace followers with friends
* Move block unblock to drawer and some cosmetic changes
* Options to edit own profile when viewing
* Changes for University Class
* Small fix
* Made ProfileOnboarding a scroll view and other small changes
* Small fix
* Small fix thanks to ivan and tanmay
* Add ?
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index 2118492d..3b2289fd 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -20,10 +20,7 @@ export const SEARCH_ENDPOINT: string = API_URL + 'search/'; export const MOMENTS_ENDPOINT: string = API_URL + 'moments/'; export const VERIFY_INVITATION_CODE_ENDPOUNT: string = API_URL + 'verify-code/'; export const COMMENTS_ENDPOINT: string = API_URL + 'comments/'; -export const FOLLOW_USER_ENDPOINT: string = API_URL + 'follow/'; -export const UNFOLLOW_USER_ENDPOINT: string = API_URL + 'unfollow/'; -export const FOLLOWERS_ENDPOINT: string = API_URL + 'followers/'; -export const FOLLOWING_ENDPOINT: string = API_URL + 'following/'; +export const FRIENDS_ENDPOINT: string = API_URL + 'friends/'; export const ALL_USERS_ENDPOINT: string = API_URL + 'users/'; export const REPORT_ISSUE_ENDPOINT: string = API_URL + 'report/'; export const BLOCK_USER_ENDPOINT: string = API_URL + 'block/'; |