VerifyEmail is the resolver for the verify_email field.
(ctx context.Context, params model.VerifyEmailRequest)
| 49 | |
| 50 | // VerifyEmail is the resolver for the verify_email field. |
| 51 | func (r *mutationResolver) VerifyEmail(ctx context.Context, params model.VerifyEmailRequest) (*model.AuthResponse, error) { |
| 52 | return r.GraphQLProvider.VerifyEmail(ctx, ¶ms) |
| 53 | } |
| 54 | |
| 55 | // ResendVerifyEmail is the resolver for the resend_verify_email field. |
| 56 | func (r *mutationResolver) ResendVerifyEmail(ctx context.Context, params model.ResendVerifyEmailRequest) (*model.Response, error) { |
nothing calls this directly
no test coverage detected