-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
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
Filter measurements by branch #382
Conversation
I recall we had some changes in the frontend, is this the same PR? |
@Jexsie this rest endpoint provides all possible branches for a benchmark |
Yeah i see that, I just don't see the frontend utilization of the API |
@@ -123,4 +119,10 @@ List<Measurement> findByQuery(@RequestParam final String benchmarkId, | |||
return measurements; | |||
} | |||
} | |||
|
|||
@GetMapping("/{benchmarkId}/branches") | |||
public List<String> getBranchesForBenchmark(@PathVariable String benchmarkId) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lets rename it in getGitBranchesForBenchmark since I needed a second to get what is meant here.
Fixes #365