Skip to content

Commit

Permalink
Revert "Remove the global channel"
Browse files Browse the repository at this point in the history
This reverts commit 2f6c2f5.

This unintentionally also removed /all, which is actually somewhat
useful.
  • Loading branch information
edolstra committed Dec 6, 2016
1 parent cf12356 commit d0ad3fd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/lib/Hydra/Controller/Root.pm
Expand Up @@ -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;
Expand Down Expand Up @@ -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" };
Expand Down

0 comments on commit d0ad3fd

Please sign in to comment.