forked from lix-project/hydra
Revert "Remove the global channel"
This reverts commit 2f6c2f5622
.
This unintentionally also removed /all, which is actually somewhat
useful.
This commit is contained in:
parent
cf12356572
commit
d0ad3fd806
|
@ -3,9 +3,9 @@ package Hydra::Controller::Root;
|
|||
use utf8;
|
||||
use strict;
|
||||
use warnings;
|
||||
use base 'Hydra::Base::Controller::ListBuilds';
|
||||
use Hydra::Helper::Nix;
|
||||
use Hydra::Helper::CatalystUtils;
|
||||
use base 'Hydra::Base::Controller::REST';
|
||||
use Digest::SHA1 qw(sha1_hex);
|
||||
use Nix::Store;
|
||||
use Nix::Config;
|
||||
|
@ -192,6 +192,16 @@ sub machines :Local Args(0) {
|
|||
}
|
||||
|
||||
|
||||
# Hydra::Base::Controller::ListBuilds needs this.
|
||||
sub get_builds : Chained('/') PathPart('') CaptureArgs(0) {
|
||||
my ($self, $c) = @_;
|
||||
$c->stash->{allBuilds} = $c->model('DB::Builds');
|
||||
$c->stash->{latestSucceeded} = $c->model('DB')->resultset('LatestSucceeded');
|
||||
$c->stash->{channelBaseName} = "everything";
|
||||
$c->stash->{total} = $c->model('DB::NrBuilds')->find('finished')->count;
|
||||
}
|
||||
|
||||
|
||||
sub robots_txt : Path('robots.txt') {
|
||||
my ($self, $c) = @_;
|
||||
$c->stash->{'plain'} = { data => "User-agent: *\nDisallow: /*\n" };
|
||||
|
|
Loading…
Reference in a new issue