Skip to content

Commit

Permalink
fix: remove HEAD from /receipts controller
Browse files Browse the repository at this point in the history
  • Loading branch information
jimcase committed Aug 14, 2024
1 parent 912b03b commit 28d0b2f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public ResponseEntity<?> getVoteReceipt(Authentication authentication) {
});
}

@RequestMapping(value = "/receipts", method = { GET, HEAD }, produces = "application/json")
@RequestMapping(value = "/receipts", method = { GET }, produces = "application/json")
@Timed(value = "resource.vote.receipts", histogram = true)
@Operation(
summary = "Retrieve all vote receipts for the authenticated user",
Expand Down

0 comments on commit 28d0b2f

Please sign in to comment.