Updates verify-email to HTTP method GET#254
Open
KeenWarrior wants to merge 1 commit intohagopj13:masterfrom
Open
Updates verify-email to HTTP method GET#254KeenWarrior wants to merge 1 commit intohagopj13:masterfrom
KeenWarrior wants to merge 1 commit intohagopj13:masterfrom
Conversation
| const subject = 'Email Verification'; | ||
| // replace this url with the link to the email verification page of your front-end app | ||
| const verificationEmailUrl = `http://link-to-app/verify-email?token=${token}`; | ||
| const verificationEmailUrl = `http://link-to-app/v1/auth/verify-email?token=${token}`; |
There was a problem hiding this comment.
@KeenWarrior , I think it will be front-end url. frontend will call the api accordingly. so no changes required.
|
@KeenWarrior, I think it will be front-end url. frontend will call the api accordingly. so no changes required. |
alamjamal
approved these changes
May 16, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The current verify-email HTTP method is set to POST. Which would not work on email link click.
Updates change method to GET and also update sample email content of send verification email to correct path.