perl: jobsetevals -> jobset via by jobset_id

Frankly, this was suspiciously little work.
This commit is contained in:
Graham Christensen
2021-01-26 09:50:59 -05:00
parent 54341cd9f6
commit 54b8cb188e
5 changed files with 8 additions and 5 deletions

View File

@ -16,8 +16,8 @@ sub evalChain : Chained('/') PathPart('eval') CaptureArgs(1) {
or notFound($c, "Evaluation $evalId doesn't exist.");
$c->stash->{eval} = $eval;
$c->stash->{project} = $eval->project;
$c->stash->{jobset} = $eval->jobset;
$c->stash->{project} = $eval->jobset->project;
}