fix the verification emails (#366)

* fix the verification emails

* fix typo

* switch to token only
This commit is contained in:
Asim Aslam
2022-02-09 21:51:47 +00:00
committed by GitHub
parent 1ea9b6f373
commit f232eab84e
5 changed files with 229 additions and 223 deletions

View File

@@ -163,12 +163,8 @@ message LogoutResponse {
// Verify the email address of an account from a token sent in an email to the user.
message VerifyEmailRequest {
// the unique id assigned to the verification process
string id = 1;
// the email address to verify
string email = 2;
// The token from the verification email
string token = 3;
string token = 1;
}
message VerifyEmailResponse{