Add resolver to resend verify email link

Resolves #20
This commit is contained in:
Lakhan Samani
2021-07-18 12:56:17 +05:30
parent e2fc610762
commit 2840a085ca
8 changed files with 193 additions and 11 deletions

View File

@@ -19,6 +19,10 @@ type LoginResponse struct {
User *User `json:"user"`
}
type ResendVerifyEmailInput struct {
Email string `json:"email"`
}
type Response struct {
Message string `json:"message"`
}