Skip to content

Commit

Permalink
[PPANTT-142] fix: Apiconfig API path
Browse files Browse the repository at this point in the history
  • Loading branch information
svariant committed Oct 17, 2024
1 parent 431fa3a commit 8e43075
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
@FeignClient(name = "api-config", url = "${rest-client.api-config.base-url}", configuration = ApiConfigFeignConfig.class)
public interface ApiConfigClient {

@GetMapping(value = "/station-maintenances", produces = {MediaType.APPLICATION_JSON_VALUE})
@GetMapping(value = "brokers/station-maintenances", produces = {MediaType.APPLICATION_JSON_VALUE})
StationMaintenanceListResource getAllStationsMaintenances(
@RequestParam(required = false) @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) OffsetDateTime startDateTimeBefore,
@RequestParam(required = false) @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) OffsetDateTime startDateTimeAfter,
Expand Down

0 comments on commit 8e43075

Please sign in to comment.