Open La0 opened 6 days ago
This is the last development in the backend before porting code over to Treeherder.
Creation endpoints (revision, diff, issues) are OK now, but the bot also needs a way to retrieve issues in 3 stages:
We can build a single endpoint that takes as URL parameters:
unresolved|known|closed
The endpoint serializer returns each Issue ID & hash (that's it).
The Endpoint would be exposed as /diff/{diff_id}/issues/{mode}/
/diff/{diff_id}/issues/{mode}/
We'll then implement their usage in the bot in a followup
This is the last development in the backend before porting code over to Treeherder.
Creation endpoints (revision, diff, issues) are OK now, but the bot also needs a way to retrieve issues in 3 stages:
We can build a single endpoint that takes as URL parameters:
unresolved|known|closed
The endpoint serializer returns each Issue ID & hash (that's it).
The Endpoint would be exposed as
/diff/{diff_id}/issues/{mode}/
We'll then implement their usage in the bot in a followup