api
api copied to clipboard
Bug: the `v1/repos/.../contributions` endpoints seem to not work
Describe the bug
When executing the following API query for contributions on open-sauced/api
:
curl -X 'GET' \
'https://api.opensauced.pizza/v1/repos/open-sauced/api/contributions?page=1&limit=10&range=30&prev_days_start_date=0' \
-H 'accept: application/json'
nothing is returned:
{
"data": [],
"meta": {
"page": 1,
"limit": 10,
"itemCount": 0,
"pageCount": 0,
"hasPreviousPage": false,
"hasNextPage": false
}
}
These endpoints inspect the contributions
tables we have. It doesn't seem like there is anything in the contributions
table on our databases. Maybe these were incomplete features? cc @brandonroberts any context here?
Steps to reproduce
- Go to https://api.opensauced.pizza/#/Contribution%20service/findAllByOwnerAndRepo
- Execute a query
- No results
Browsers
No response
Additional context (Is this in dev or production?)
No response
Code of Conduct
- [X] I agree to follow this project's Code of Conduct
Contributing Docs
- [X] I agree to follow this project's Contribution Docs