I get a file result with both the users' data quality issues.
On the user reports page on the galaxy UI, the procedure is as follows:
User enters the osm usernames, start and end dates, and/or mapathon hashtags.
An API request is made to the /osm-users/ids endpoint with the osm usernames entered and dates.
With the returned ids for each user, an API request is made to /osm-users/statistics for each user to return their respective stats. As well as another API request to /data-quality/user-reports to retrieve their data quality reports in either CSV or JSON.
The issue is when using that same sample request info with the specified dates whilst following the steps outlined in the frontend procedure, only one user id is returned, and hence only one user's report is displayed on the galaxy UI.
This is not consistent with the information returned when hitting the /data-quality/user-reports endpoint which shows the results for both users.
When querying the
/data-quality/user-reports
endpoint with this:I get a file result with both the users' data quality issues.
On the user reports page on the galaxy UI, the procedure is as follows:
/osm-users/ids
endpoint with the osm usernames entered and dates./osm-users/statistics
for each user to return their respective stats. As well as another API request to /data-quality/user-reports
to retrieve their data quality reports in either CSV or JSON.The issue is when using that same sample request info with the specified dates whilst following the steps outlined in the frontend procedure, only one user id is returned, and hence only one user's report is displayed on the galaxy UI.
This is not consistent with the information returned when hitting the
/data-quality/user-reports
endpoint which shows the results for both users.