Skip to content

Commit

Permalink
[SELC-5434] : changed API paths
Browse files Browse the repository at this point in the history
  • Loading branch information
eugenbegiqi committed Sep 5, 2024
1 parent fcbb702 commit dee26c1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class AggregatesController {

@Operation(summary = "Validate the data related to the aggregated entities present in a CSV file")
@POST
@Path("/verification/appio")
@Path("/verification/prod-io")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.MULTIPART_FORM_DATA)
public Uni<VerifyAggregateResponse> verifyAppIoAggregatesCsv(@NotNull @RestForm("aggregates") File file){
Expand All @@ -36,7 +36,7 @@ public Uni<VerifyAggregateResponse> verifyAppIoAggregatesCsv(@NotNull @RestForm(

@Operation(summary = "Validate the data related to the aggregated entities present in a CSV file")
@POST
@Path("/verification/send")
@Path("/verification/prod-pn")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.MULTIPART_FORM_DATA)
public Uni<VerifyAggregateResponse> verifySendAggregatesCsv(@NotNull @RestForm("aggregates") File file){
Expand All @@ -46,7 +46,7 @@ public Uni<VerifyAggregateResponse> verifySendAggregatesCsv(@NotNull @RestForm("

@Operation(summary = "Validate the data related to the aggregated entities present in a CSV file")
@POST
@Path("/verification/pagopa")
@Path("/verification/prod-pagopa")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.MULTIPART_FORM_DATA)
public Uni<VerifyAggregateResponse> verifyPagoPaAggregatesCsv(@NotNull @RestForm("aggregates") File file){
Expand Down

0 comments on commit dee26c1

Please sign in to comment.