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 1899445 commit c76deb3
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 @@ -40,6 +40,7 @@ public DeleteGraffiti() {
"Successfully removed the graffiti, or there was no graffiti set for the requested public key.")
.withAuthenticationResponses()
.withNotFoundResponse()
.withNotImplementedResponse()
.build());
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,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 c76deb3

Please sign in to comment.