diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2020-10-13 10:24:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-13 13:24:59 -0400 |
commit | 854a7d8f8526e8142c416ec41682468e87bcbbd2 (patch) | |
tree | 80493f0e697cc1b6d93e960fa2a0a6d5a4a91e95 /src/constants/api.ts | |
parent | 6e3fe33e5e1d3818ef8bb942c1544581ab8c0688 (diff) |
[TMA - 238] Added invitation code verification screen as the first onboarding screen (#46)
* Added invitation code verification screen as the first onboarding screen
* Changed screen order on some screens and a quick check on back navigation
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index e4fed13e..86b941d0 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -12,3 +12,6 @@ export const COVER_PHOTO_ENDPOINT: string = API_URL + 'large-profile-pic/'; export const AVATAR_PHOTO_ENDPOINT: string = API_URL + 'small-profile-pic/'; export const GET_IG_POSTS_ENDPOINT: string = API_URL + 'posts-ig/'; export const SEARCH_ENDPOINT: string = API_URL + 'search/'; + +//TODO add an endpoint to verify the invitation code, such as below +//export const VERIFY_INVITATION_CODE_ENDPOUNT: string = API_URL + 'verify_invitation_code/'; |