Jobset.pm: Don't show channels in "Jobs" tab.
Now that we have our dedicated "Channels" tab, there is no need anymore to show redundant information. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
@@ -116,7 +116,7 @@ sub jobs_tab : Chained('jobsetChain') PathPart('jobs-tab') Args(0) {
|
|||||||
|
|
||||||
foreach my $eval (@evals) {
|
foreach my $eval (@evals) {
|
||||||
my @builds = $eval->builds->search(
|
my @builds = $eval->builds->search(
|
||||||
{ job => { ilike => $filter } },
|
{ job => { ilike => $filter }, ischannel => 0 },
|
||||||
{ columns => ['id', 'job', 'finished', 'buildstatus'] });
|
{ columns => ['id', 'job', 'finished', 'buildstatus'] });
|
||||||
foreach my $b (@builds) {
|
foreach my $b (@builds) {
|
||||||
my $jobName = $b->get_column('job');
|
my $jobName = $b->get_column('job');
|
||||||
|
Reference in New Issue
Block a user