We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
An API user should be able to delete a repo using the REST API.
DELETE /api/repos/abcd1234 --- 204 No Content
If the requested repo is not available, it should fail with 404.
DELETE /api/repos/abcd1234-bad-repo --- 404 Not Found
The text was updated successfully, but these errors were encountered:
Should there be a body when status is 404 Not Found?
404 Not Found
Sorry, something went wrong.
This will be used in capstone. The API currently responds with 200 and doesn't actually perform the delete.
This doesn't break the behaviour in capstone though, only lets extra unused repositories sit with gitto.
anandology
No branches or pull requests
An API user should be able to delete a repo using the REST API.
If the requested repo is not available, it should fail with 404.
The text was updated successfully, but these errors were encountered: