diff options
Diffstat (limited to 'src/constants')
-rw-r--r-- | src/constants/api.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index 181247dd..d9e199d2 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -17,6 +17,9 @@ 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/'; // Social Link export const LINK_IG_ENDPOINT: string = API_URL + 'link-ig/'; |