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
If there are no builds, the last attribute of meta points to an invalid URL:
builds
last
meta
🐚 curl http://localhost:8080/api/v1/builds { "items": [], "meta": { "first": "http://localhost:8080/api/v1/builds?page=1&per_page=20", "last": "http://localhost:8080/api/v1/builds?page=0&per_page=20", "next": null, "page": 1, "pages": 0, "per_page": 20, "previous": null, "total": 0 } } 🐚 curl 'http://localhost:8080/api/v1/builds?page=0&per_page=20"' { "error": "The requested resource was not found" }
meta.last should have the same value as meta.first if there are not builds.
meta.last
meta.first
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If there are no
builds
, thelast
attribute ofmeta
points to an invalid URL:meta.last
should have the same value asmeta.first
if there are not builds.The text was updated successfully, but these errors were encountered: