Skip to content

Commit

Permalink
fix bug with aspect POST request body - expected request body is the …
Browse files Browse the repository at this point in the history
…aspect itself, not the request wrapper
  • Loading branch information
kevin1chun committed Jul 20, 2024
1 parent 5e51f2a commit 97d5b28
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -827,9 +827,7 @@ private static PathItem buildSingleEntityAspectPath(
.schema(
new Schema()
.$ref(
String.format(
"#/components/schemas/%s%s",
upperFirstAspect, ASPECT_REQUEST_SUFFIX)))));
String.format("#/components/schemas/%s", upperFirstAspect)))));
final Operation postOperation =
new Operation()
.summary(String.format("Create aspect %s on %s ", aspect, upperFirstEntity))
Expand Down

0 comments on commit 97d5b28

Please sign in to comment.