Compare commits

..

1 commit

Author SHA1 Message Date
5e7307cbf3 admin api: add comments for InspectObject
All checks were successful
ci/woodpecker/push/debug Pipeline was successful
ci/woodpecker/pr/debug Pipeline was successful
2025-04-06 14:21:54 +02:00
2 changed files with 4 additions and 0 deletions

View file

@ -1090,6 +1090,9 @@
}
}
},
"404": {
"description": "Object not found"
},
"500": {
"description": "Internal server error"
}

View file

@ -525,6 +525,7 @@ upload is in progress and not yet finished.
params(InspectObjectRequest),
responses(
(status = 200, description = "Returns exhaustive information about the object", body = InspectObjectResponse),
(status = 404, description = "Object not found"),
(status = 500, description = "Internal server error")
),
)]