diff options
| author | Ivan Chen <ivan@thetaggid.com> | 2021-02-18 14:16:23 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-18 14:16:23 -0500 |
| commit | 2bb7b351a0e509beb9e6d87364471599af402db2 (patch) | |
| tree | fe23f63de28c4f472805f952a1422a72e7c3b8a0 /src/constants | |
| parent | 99db144ce20fd5f1502f668795ae7cafbc5b2eae (diff) | |
| parent | 04b998e6cca0d76c391b91403172c53f276db64a (diff) | |
Merge pull request #236 from IvanIFChen/tma626-people-tutorial
[TMA-626] Suggested People Tutorial (First 3 Screens)
Diffstat (limited to 'src/constants')
| -rw-r--r-- | src/constants/api.ts | 4 | ||||
| -rw-r--r-- | src/constants/constants.ts | 3 | ||||
| -rw-r--r-- | src/constants/strings.ts | 1 |
3 files changed, 7 insertions, 1 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/'; diff --git a/src/constants/constants.ts b/src/constants/constants.ts index 3c43fb6c..fbf03744 100644 --- a/src/constants/constants.ts +++ b/src/constants/constants.ts @@ -181,3 +181,6 @@ export const EXPLORE_SECTION_TITLES: ExploreSectionType[] = [ "Brown '22", "Brown '23", ]; + +export const SP_WIDTH = 375; +export const SP_HEIGHT = 812; diff --git a/src/constants/strings.ts b/src/constants/strings.ts index 5a9be5fc..0965bad0 100644 --- a/src/constants/strings.ts +++ b/src/constants/strings.ts @@ -1,4 +1,3 @@ - /* eslint-disable */ // Below is the regex to convert this into a csv for the Google Sheet // export const (.*) = .*?(['|"|`])(.*)\2; |
