E.g. /eval/798867/job/tarball redirects to the build with job name "tarball".
KSFBREJF6VBK3VMGKOU2Y47AT2NA3QNBJVLSNXOBUAG3ENWAL5JAC
U4TD3AIQXBJFFUORTMIC4IHZTVBORRKL2TZ2FSP4G665ECZOEMNAC
sub job : Chained('eval') PathPart('job') { my ($self, $c, $job, @rest) = @_;
sub job : Chained('eval') PathPart('job') {
my ($self, $c, $job, @rest) = @_;
my $build = $c->stash->{eval}->builds->find({job => $job});
notFound($c, "This evaluation has no job with the specified name.") unless defined $build; $c->res->redirect($c->uri_for($c->controller('Build')->action_for("build"), [$build->id], @rest));}
notFound($c, "This evaluation has no job with the specified name.") unless defined $build;
$c->res->redirect($c->uri_for($c->controller('Build')->action_for("build"), [$build->id], @rest));
}