feat: refactor reset password mutation with the REST API endpoint

This commit is contained in:
kasia.oczkowska
2024-07-17 15:04:15 +01:00
parent 27610c002c
commit dd0a1328e8
8 changed files with 45 additions and 57 deletions

View File

@@ -21,7 +21,6 @@ type Mutation {
login(input: LoginInput): Auth
registerUser(input: RegisterUserInput): User
resetConnection(input: ResetConnectionInput): Connection
resetPassword(input: ResetPasswordInput): Boolean
updateAppAuthClient(input: UpdateAppAuthClientInput): AppAuthClient
updateAppConfig(input: UpdateAppConfigInput): AppConfig
updateConfig(input: JSONObject): JSONObject
@@ -404,11 +403,6 @@ input UpdateCurrentUserInput {
fullName: String
}
input ResetPasswordInput {
token: String!
password: String!
}
input LoginInput {
email: String!
password: String!