diff options
author | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-18 13:38:31 -0700 |
---|---|---|
committer | Shravya Ramesh <shravs1208@gmail.com> | 2021-03-18 13:38:31 -0700 |
commit | a44e8d02c117783c19618d3af204299ae5c7a9ff (patch) | |
tree | 6372bd4a241442d5bab60e8bbf2bb34401a291ee | |
parent | 0b656aebd671c09002dd3ad13d5d83a630cad7f1 (diff) |
erroneous endpoint for invite contacts
-rw-r--r-- | src/constants/api.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index 26afaddd..1e2e887a 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -36,7 +36,7 @@ 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 = -USERS_FROM_CONTACTS_ENDPOINT + 'user_contacts/invite_friend/'; +API_URL + 'user_contacts/invite_friend/'; // Suggested People export const SP_USERS_ENDPOINT: string = API_URL + 'suggested_people/'; |