Skip to content

Commit

Permalink
Fix mutation-data-count API sync issue (#10777)
Browse files Browse the repository at this point in the history
Fix mutation-data-count API sync issue
  • Loading branch information
inodb committed May 3, 2024
2 parents f38bc51 + 48d4ded commit 92bf128
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/main/java/org/cbioportal/web/StudyViewController.java
Original file line number Diff line number Diff line change
Expand Up @@ -1176,6 +1176,8 @@ public List<ClinicalEventTypeCount> cachedClinicalEventTypeCounts(StudyViewFilte
@RequestMapping(value = "/mutation-data-counts/fetch", method = RequestMethod.POST,
consumes = MediaType.APPLICATION_JSON_VALUE, produces = MediaType.APPLICATION_JSON_VALUE)
@Operation(description = "Fetch mutation data counts by GenomicDataCountFilter")
@ApiResponse(responseCode = "200", description = "OK",
content = @Content(array = @ArraySchema(schema = @Schema(implementation = GenomicDataCountItem.class))))
public ResponseEntity<List<GenomicDataCountItem>> fetchMutationDataCounts(
@Parameter(description = "Level of detail of the response")
@RequestParam(defaultValue = "SUMMARY") Projection projection,
Expand Down

0 comments on commit 92bf128

Please sign in to comment.