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