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

@@ -533,7 +533,7 @@ input SignUpInput {
lastName: String
email: String!
password: String!
cofirmPassword: String!
confirmPassword: String!
image: String
}
@@ -3311,11 +3311,11 @@ func (ec *executionContext) unmarshalInputSignUpInput(ctx context.Context, obj i
if err != nil {
return it, err
}
case "cofirmPassword":
case "confirmPassword":
var err error
ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("cofirmPassword"))
it.CofirmPassword, err = ec.unmarshalNString2string(ctx, v)
ctx := graphql.WithPathContext(ctx, graphql.NewPathWithField("confirmPassword"))
it.ConfirmPassword, err = ec.unmarshalNString2string(ctx, v)
if err != nil {
return it, err
}