Skip to content

Commit

Permalink
fx
Browse files Browse the repository at this point in the history
  • Loading branch information
oskogstad committed Dec 11, 2024
1 parent e624fef commit 1969c77
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/schema/V1/swagger.verified.json
Original file line number Diff line number Diff line change
Expand Up @@ -6747,7 +6747,10 @@
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/V1ServiceOwnerDialogTransmissionsQueriesSearch_Transmission"
"items": {
"$ref": "#/components/schemas/V1ServiceOwnerDialogTransmissionsQueriesSearch_Transmission"
},
"type": "array"
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public override void Configure()
Policies(AuthorizationPolicy.ServiceProvider);
Group<ServiceOwnerGroup>();

Description(b => b.ProducesOneOf<TransmissionDto>(
Description(b => b.ProducesOneOf<List<TransmissionDto>>(
StatusCodes.Status200OK,
StatusCodes.Status404NotFound,
StatusCodes.Status410Gone));
Expand Down

0 comments on commit 1969c77

Please sign in to comment.