Make the log work for commits and symbolic refs also.
[catagits/Gitalist.git] / lib / Gitalist / URIStructure / WithLog.pm
1 package Gitalist::URIStructure::WithLog;
2 use MooseX::MethodAttributes::Role;
3 use namespace::autoclean;
4
5 sub log : Chained('find') PathPart('') CaptureArgs(0) {}
6
7 sub shortlog : Chained('log') Args(0) {}
8
9 sub longlog : Chained('log') PathPart('log') Args(0) {}
10
11 1;