Added stubs for further missing actions.
[catagits/Gitalist.git] / lib / Gitalist / Controller / Root.pm
index d295155..4f388ef 100644 (file)
@@ -4,10 +4,6 @@ use namespace::autoclean;
 
 BEGIN { extends 'Catalyst::Controller' }
 
-#
-# Sets the actions in this controller to be registered with no prefix
-# so they function identically to actions created in MyApp.pm
-#
 __PACKAGE__->config->{namespace} = '';
 
 use IO::Capture::Stdout;
@@ -531,6 +527,23 @@ sub auto : Private {
   );
 }
 
+sub tags : Local {
+    # FIXME - implement snapshot
+    Carp::croak "Not implemented.";
+}
+sub project_index : Local {
+    # FIXME - implement snapshot
+    Carp::croak "Not implemented.";
+}
+sub opml : Local {
+    # FIXME - implement snapshot
+    Carp::croak "Not implemented.";
+}
+sub blame : Local {
+    # FIXME - implement snapshot
+    Carp::croak "Not implemented.";
+}
+
 =head2 end
 
 Attempt to render a view, if needed.