builds: add a build->project func to get the project via the jobset

This commit is contained in:
Graham Christensen 2022-01-08 22:32:56 -05:00
parent f120909547
commit c539deea99

View file

@ -597,4 +597,9 @@ sub as_json {
return $json;
}
sub project {
my ($self) = @_;
return $self->jobset->project;
}
1;