RED-5205 - fix getmapping path for download #127

Merged
andrei.isvoran.ext merged 1 commits from RED-5205-fix into master 2023-09-15 11:01:36 +02:00

View File

@ -68,7 +68,7 @@ public interface DownloadResource {
@ResponseStatus(value = HttpStatus.OK)
@Operation(summary = "Returns a downloadable byte stream of the requested file")
@ApiResponses(value = {@ApiResponse(responseCode = "200", description = "OK"), @ApiResponse(responseCode = "404", description = "Download with this Id is no longer available")})
@GetMapping(value = REST_PATH+"/primitive")
@GetMapping(value = REST_PATH)
void downloadFile(@RequestParam(STORAGE_ID) String storageId);