Skip to content

Commit

Permalink
Fix GraphQL mutation name
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaLisov committed Sep 1, 2024
1 parent 797e1ec commit f2a1482
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public UserDto getById(
}

@DeleteMapping("/{id}")
@MutationMapping(name = "deleteUserById")
@MutationMapping(name = "deleteUser")
@Operation(summary = "Delete user by id")
@PreAuthorize("@cse.canAccessUser(#id)")
public void deleteById(
Expand Down

0 comments on commit f2a1482

Please sign in to comment.