diff options
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index d9e199d2..ce9b24f4 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -21,7 +21,12 @@ 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 +// Register Social Link (Non-integrated) +export const LINK_SNAPCHAT_ENDPOINT: string = API_URL + 'link-sc/'; +export const LINK_TIKTOK_ENDPOINT: string = API_URL + 'link-tt/'; + +// Register Social Link (Integrated) +export const LINKED_SOCIALS_ENDPOINT: string = API_URL + 'linked-socials/'; export const LINK_IG_ENDPOINT: string = API_URL + 'link-ig/'; export const LINK_FB_ENDPOINT: string = API_URL + 'link-fb/'; export const LINK_TWITTER_ENDPOINT: string = API_URL + 'link-twitter/'; |