Move the Commit code to URIStructure, add templates for tree.
[catagits/Gitalist.git] / lib / Gitalist / Controller / Commit.pm
1 package Gitalist::Controller::Commit;
2
3 use Moose;
4 use namespace::autoclean;
5
6 BEGIN { extends 'Catalyst::Controller' }
7 with 'Gitalist::URIStructure::Commit';
8
9 sub base : Chained('/repository/find') PathPart('') CaptureArgs(0) {}
10
11 __PACKAGE__->meta->make_immutable;