Skip to content

Commit

Permalink
fixup! feat: also enable returning TSV #284
Browse files Browse the repository at this point in the history
  • Loading branch information
fengelniederhammer committed Aug 4, 2023
1 parent c761a6a commit 17574d1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ class LapisController(
@GetMapping("/details", produces = [TEXT_TSV_HEADER])
@Operation(
description = DETAILS_ENDPOINT_DESCRIPTION,
operationId = "getDetailsAsCsv",
operationId = "getDetailsAsTsv",
)
fun getDetailsAsTsv(
@SequenceFilters
Expand Down Expand Up @@ -371,7 +371,7 @@ class LapisController(
@PostMapping("/details", produces = [TEXT_TSV_HEADER])
@Operation(
description = DETAILS_ENDPOINT_DESCRIPTION,
operationId = "postDetailsAsCsv",
operationId = "postDetailsAsTsv",
)
fun postDetailsAsTsv(
@Parameter(schema = Schema(ref = "#/components/schemas/$DETAILS_REQUEST_SCHEMA"))
Expand Down

0 comments on commit 17574d1

Please sign in to comment.