Remove obsolete/broken timeline feature

This commit is contained in:
Eelco Dolstra
2013-11-06 15:20:30 +01:00
parent e8d92445d7
commit 60e7e4fbe9
2 changed files with 0 additions and 78 deletions

View File

@ -76,20 +76,6 @@ sub queue_GET {
}
sub timeline :Local {
my ($self, $c) = @_;
my $pit = time();
$c->stash->{pit} = $pit;
$pit = $pit-(24*60*60)-1;
$c->stash->{template} = 'timeline.tt';
$c->stash->{builds} = [ $c->model('DB::Builds')->search
( { finished => 1, stoptime => { '>' => $pit } }
, { order_by => ["starttime"] }
) ];
}
sub status :Local :Args(0) :ActionClass('REST') { }
sub status_GET {