Split subincludes out into their own /fragment controllers.
[catagits/Gitalist.git] / lib / Gitalist / Controller / Repository.pm
index 3de3bcb..b79e51b 100644 (file)
@@ -1,34 +1,10 @@
 package Gitalist::Controller::Repository;
-
 use Moose;
-use Moose::Autobox;
-use Try::Tiny qw/try catch/;
 use namespace::autoclean;
 
 BEGIN { extends 'Catalyst::Controller' }
+with 'Gitalist::URIStructure::Repository';
 
 sub base : Chained('/root') PathPart('') CaptureArgs(0) {}
 
-sub find : Chained('base') PathPart('') CaptureArgs(1) {
-    my ($self, $c, $repository) = @_;
-    try {
-        $c->stash(Repository => $c->model()->get_repository($repository));
-    }
-    catch {
-        $c->detach('/error_404');
-    };
-}
-
-sub summary : Chained('find') PathPart('') Args(0) {
-    my ($self, $c) = @_;
-    $c->stash(template => 'summary.tt2');
-    $c->forward('/summary');
-} 
-
-sub shortlog : Chained('find') Args(0) {
-    my ($self, $c) = @_;
-    $c->stash(template => 'shortlog.tt2');
-    $c->forward('/shortlog');
-}
-
 __PACKAGE__->meta->make_immutable;