Skip to content

Commit

Permalink
Add not implemented response
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyeh committed Apr 15, 2024
1 parent 8ccee7b commit b72ba2d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ public GetGraffiti() {
.response(SC_OK, "Success response", RESPONSE_TYPE)
.withAuthenticationResponses()
.withNotFoundResponse()
.withNotImplementedResponse()
.build());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,16 @@
}
}
},
"501" : {
"description" : "Not implemented",
"content" : {
"application/json" : {
"schema" : {
"$ref" : "#/components/schemas/HttpErrorResponse"
}
}
}
},
"400" : {
"description" : "The request could not be processed, check the response for more information.",
"content" : {
Expand Down

0 comments on commit b72ba2d

Please sign in to comment.