forked from lix-project/hydra
Merge pull request #529 from bennofs/feat-all-builds
feat: add /eval/<id>/builds endpoint
This commit is contained in:
commit
cd234f6a14
1 changed files with 11 additions and 0 deletions
|
@ -264,4 +264,15 @@ sub store_paths : Chained('evalChain') PathPart('store-paths') Args(0) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
# Return full info about all the builds in this evaluation.
|
||||||
|
sub all_builds : Chained('evalChain') PathPart('builds') Args(0) {
|
||||||
|
my ($self, $c) = @_;
|
||||||
|
my @builds = $c->stash->{eval}->builds;
|
||||||
|
$self->status_ok(
|
||||||
|
$c,
|
||||||
|
entity => [@builds],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
|
Loading…
Reference in a new issue