diff options
author | Justin Shillingford <jgs272@cornell.edu> | 2020-07-15 14:46:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-15 14:46:58 -0400 |
commit | d0a72c6e258def8e5f5ac99477114da8edfc2fcf (patch) | |
tree | bc104c687aa1a79a306bb791166328fb4be46741 /src/constants/api.ts | |
parent | 3547018e9f803a5ff747126e16b9ef559c3f95cf (diff) |
[TMA-96] Verification Page Logic (#19)
* Removed header from view
* Setup basic layout of Verification page
Also created new SubmitButton component
* Some light code cleanup
* Implemented SubmitButton component on Login
* Added basic verification field
* Styled Verification CodeField
* Quick typo fix
* Some lint cleaning
* Removed header from view
* Setup basic layout of Verification page
Also created new SubmitButton component
* Some light code cleanup
* Implemented SubmitButton component on Login
* Added basic verification field
* Styled Verification CodeField
* Quick typo fix
* Some lint cleaning
* Verification isn't that exciting lol
* Removed header from view
* Setup basic layout of Verification page
Also created new SubmitButton component
* Some light code cleanup
* Implemented SubmitButton component on Login
* Added basic verification field
* Styled Verification CodeField
* Quick typo fix
* Some lint cleaning
* Light lint cleaning
* Still not that exciting lol
* Removed misplaced accessibility labels
* Added documentation to SubmitButton component
* Implemented KeyboardAvoidingView
* Fixed wizard position consistency
* Updated Verification CodeField to take 6 digits
* Removed marginVertical prop from SubmitButton
* Added basic implementation of send-otp request
* Added indicator to indicate progress during fetch
* Handled verification logic
* Fixed Verification Screen Routing naming
* Passed username and email to verification
* Some lint cleaning
* Resend Code button is now fully functional
* Some lint cleaning
* Handling TypeScript type checking errors
* Removed header from view
* Setup basic layout of Verification page
Also created new SubmitButton component
* Some light code cleanup
* Implemented SubmitButton component on Login
* Added basic verification field
* Styled Verification CodeField
* Some lint cleaning
* Setup basic layout of Verification page
Also created new SubmitButton component
* Some light code cleanup
* Implemented SubmitButton component on Login
* Added basic verification field
* Styled Verification CodeField
* Removed header from view
* Setup basic layout of Verification page
Also created new SubmitButton component
* Some light code cleanup
* Implemented SubmitButton component on Login
* Added basic verification field
* Styled Verification CodeField
* Some lint cleaning
* Removed misplaced accessibility labels
* Added documentation to SubmitButton component
* Implemented KeyboardAvoidingView
* Fixed wizard position consistency
* Updated Verification CodeField to take 6 digits
* Removed marginVertical prop from SubmitButton
* Added basic implementation of send-otp request
* Added indicator to indicate progress during fetch
* Handled verification logic
* Fixed Verification Screen Routing naming
* Passed username and email to verification
* Some lint cleaning
* Resend Code button is now fully functional
* Some lint cleaning
* Handling TypeScript type checking errors
* Lint cleaning
* Fixed a merge conflict resolution stowaway
* Final lint cleaning before PR
* Clear CodeField upon code resend
* Baby lint
* Navigate to Profile page upon verification
* Improved invalid code message
* Added documentation for new functions
* Baby baby lint
* Updated Wizard to have 4 steps
* Statuses aren't verifications lmao
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 0944eb16..657adf03 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -2,3 +2,6 @@ export const API_ENDPOINT: string = 'http://127.0.0.1:8000/api/'; export const LOGIN_ENDPOINT: string = 'http://127.0.0.1:8000/api/login/'; export const LOGOUT_ENDPOINT: string = 'http://127.0.0.1:8000/api/logout/'; export const REGISTER_ENDPOINT: string = 'http://127.0.0.1:8000/api/register/'; +export const SEND_OTP_ENDPOINT: string = 'http://127.0.0.1:8000/api/send-otp/'; +export const VERIFY_OTP_ENDPOINT: string = + 'http://127.0.0.1:8000/api/verify-otp/'; |