Remove obsolete JobStatus source

This commit is contained in:
Eelco Dolstra
2013-10-03 15:05:53 +02:00
parent c7a039bd05
commit ed132cf1fc
6 changed files with 2 additions and 37 deletions

View File

@ -202,8 +202,6 @@ sub updateProject {
sub get_builds : Chained('projectChain') PathPart('') CaptureArgs(0) {
my ($self, $c) = @_;
$c->stash->{allBuilds} = $c->stash->{project}->builds;
$c->stash->{jobStatus} = $c->model('DB')->resultset('JobStatusForProject')
->search({}, {bind => [$c->stash->{project}->name]});
$c->stash->{latestSucceeded} = $c->model('DB')->resultset('LatestSucceededForProject')
->search({}, {bind => [$c->stash->{project}->name]});
$c->stash->{channelBaseName} = $c->stash->{project}->name;