diff options
author | Ivan Chen <ivan@tagg.id> | 2021-03-18 19:48:53 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-18 19:48:53 -0400 |
commit | aa0ddb7c5a6612ff067f7dce1c6d5b083db44309 (patch) | |
tree | 89326275ce5ff4e48bc29952c60856258cd8b0ab /src/constants/api.ts | |
parent | 07a15098625786451270e30e61e2d6e78c02d4db (diff) | |
parent | 9a7e34bf992e0bfa3b9ce7d83643d97fad209e6e (diff) |
Merge pull request #303 from shravyaramesh/add-friends-thru-contacts
[TMA-622] Add friends from contacts
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index 34ef9a1c..1e2e887a 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -33,6 +33,10 @@ export const DISCOVER_ENDPOINT: string = API_URL + 'discover/'; export const SEARCH_BUTTONS_ENDPOPINT: string = DISCOVER_ENDPOINT + 'search_buttons/'; export const WAITLIST_USER_ENDPOINT: string = API_URL + 'waitlist-user/'; export const COMMENT_THREAD_ENDPOINT: string = API_URL + 'reply/'; +export const USERS_FROM_CONTACTS_ENDPOINT: string = + API_URL + 'user_contacts/find_friends/'; +export const INVITE_FRIEND_ENDPOINT: string = +API_URL + 'user_contacts/invite_friend/'; // Suggested People export const SP_USERS_ENDPOINT: string = API_URL + 'suggested_people/'; |