Implement verify email using server url

- fix confirm password typo
This commit is contained in:
Lakhan Samani
2021-07-21 03:34:03 +05:30
parent ae669eaf86
commit 885aaab6ee
8 changed files with 105 additions and 17 deletions

View File

@@ -15,7 +15,7 @@ import (
func Signup(ctx context.Context, params model.SignUpInput) (*model.Response, error) {
var res *model.Response
if params.CofirmPassword != params.Password {
if params.ConfirmPassword != params.Password {
return res, fmt.Errorf(`passowrd and confirm password does not match`)
}