Skip to content

Commit

Permalink
Updated Sector read API path
Browse files Browse the repository at this point in the history
  • Loading branch information
karthik-tarento committed Apr 15, 2024
1 parent afe87db commit c6b382e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public ResponseEntity<SBApiResponse> getSectors() {
return new ResponseEntity<>(response, response.getResponseCode());
}

@GetMapping("/sector/{sectorId}")
@GetMapping("/sector/read/{sectorId}")
public ResponseEntity<SBApiResponse> readSector(@PathVariable("sectorId") String sectorId) {
SBApiResponse response = catalogService.readSector(sectorId);
return new ResponseEntity<>(response, response.getResponseCode());
Expand Down

0 comments on commit c6b382e

Please sign in to comment.