diff options
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 165bd550..215dadc0 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -1,3 +1,4 @@ +/* eslint-disable */ // const BASE_URL: string = 'http://3.22.188.127/'; // prod server const BASE_URL: string = 'http://127.0.0.1:8000/'; // local server @@ -32,6 +33,9 @@ export const DISCOVER_ENDPOINT: string = API_URL + 'discover/'; export const WAITLIST_USER_ENDPOINT: string = API_URL + 'waitlist-user/'; export const COMMENT_THREAD_ENDPOINT: string = API_URL + 'reply/'; +// Suggested People +export const SP_UPDATE_PICTURE: string = API_URL + 'suggested_people/update_picture/'; + // Register as FCM device export const FCM_ENDPOINT: string = API_URL + 'fcm/'; |