Fix resend confirmation component

This commit is contained in:
Chocobozzz
2019-01-11 14:07:14 +01:00
parent df4d3892c3
commit 4a77b2b1b7
6 changed files with 35 additions and 21 deletions

View File

@@ -27,3 +27,9 @@ mutation ResetPassword($token: String!, $password: String!) {
},
}
`;
export const RESEND_CONFIRMATION_EMAIL = gql`
mutation ResendConfirmationEmail($email: String!) {
resendConfirmationEmail(email: $email)
}
`;