Skip to content

Commit

Permalink
Fix export
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanEngland committed Mar 20, 2024
1 parent d6bb54d commit ce5dd90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ public Response removeField(@PathParam("proposalCode") Long proposalCode, @PathP
@Path(proposalRoot+"/export")
public Response exportProposal(@PathParam("proposalCode")Long proposalCode)
throws WebApplicationException {
ObservingProposal proposalForExport = getObservingProposal(proposalCode);
ObservingProposal proposalForExport = findObject(ObservingProposal.class, proposalCode);

return Response
.status(Response.Status.OK)
Expand Down

0 comments on commit ce5dd90

Please sign in to comment.