diff options
author | Ashm Walia <40498934+ashmgarv@users.noreply.github.com> | 2020-12-08 20:19:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-08 23:19:32 -0500 |
commit | db575615046544e83759a3615f37540305aa9742 (patch) | |
tree | f30a29f47420990872c9baede4978582cea0b607 /src/constants/api.ts | |
parent | 0cb19c5b173d4cf6ba67378cbffd61abac7f18c3 (diff) |
[TMA-308] Forgot password logic [Frontend] (#131)
* Done with changes
* Submit on enter
* Fixed StrongPassword issue
* Clean and modular Verification.tsx
* small fix
Diffstat (limited to 'src/constants/api.ts')
-rw-r--r-- | src/constants/api.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/constants/api.ts b/src/constants/api.ts index d3047e55..5a752e7b 100644 --- a/src/constants/api.ts +++ b/src/constants/api.ts @@ -24,6 +24,7 @@ export const FOLLOWING_ENDPOINT: string = API_URL + 'following/'; export const ALL_USERS_ENDPOINT: string = API_URL + 'users/'; export const REPORT_ISSUE_ENDPOINT: string = API_URL + 'report/'; export const BLOCK_USER_ENDPOINT: string = API_URL + 'block/'; +export const PASSWORD_RESET_ENDPOINT: string = API_URL + 'password-reset/'; // Register Social Link (Non-integrated) export const LINK_SNAPCHAT_ENDPOINT: string = API_URL + 'link-sc/'; |