Whitespace

This commit is contained in:
Eelco Dolstra 2012-02-28 15:27:44 +01:00
parent 3d824b3a3a
commit b13664308c

View file

@ -6,6 +6,7 @@ use base 'Hydra::Base::Controller::ListBuilds';
use Hydra::Helper::Nix;
use Hydra::Helper::CatalystUtils;
sub project : Chained('/') PathPart('project') CaptureArgs(1) {
my ($self, $c, $projectName) = @_;
@ -13,9 +14,9 @@ sub project : Chained('/') PathPart('project') CaptureArgs(1) {
or notFound($c, "Project $projectName doesn't exist.");
$c->stash->{project} = $project;
}
sub view : Chained('project') PathPart('') Args(0) {
my ($self, $c) = @_;