ACL for hardware class config, RT#85057
[freeside.git] / FS / FS / ClientAPI.pm
index 488b079..4ba03f4 100644 (file)
@@ -11,6 +11,14 @@ $me = '[FS::ClientAPI]';
 
 %handler = ();
 
+=head1 NAME
+
+FS::ClientAPI
+
+=item load_clientapi_modules
+
+=cut
+
 sub load_clientapi_modules {
 
   #find modules
@@ -31,11 +39,15 @@ sub load_clientapi_modules {
 
 }
 
+=item dispatch [ name ]
+
+=cut
+
 sub dispatch {
   my ( $self, $name ) = ( shift, shift );
   $name =~ s(/)(::)g;
   my $sub = "FS::ClientAPI::$name";
-  warn "$me dispatch: calling $sub\n" if $DEBUG;
+  warn "$me dispatch: calling $sub with args @_\n" if $DEBUG;
   no strict 'refs';
   &{$sub}(@_);
 }