ACL for hardware class config, RT#85057
[freeside.git] / FS / FS / ClientAPI.pm
index c36fd55..4ba03f4 100644 (file)
@@ -3,7 +3,6 @@ package FS::ClientAPI;
 use strict;
 use base 'Exporter';
 use vars qw( @EXPORT_OK %handler $domain $DEBUG $me );
-use FS::UID qw( dbh );
 
 @EXPORT_OK = qw( load_clientapi_modules );
 
@@ -12,6 +11,14 @@ $me = '[FS::ClientAPI]';
 
 %handler = ();
 
+=head1 NAME
+
+FS::ClientAPI
+
+=item load_clientapi_modules
+
+=cut
+
 sub load_clientapi_modules {
 
   #find modules
@@ -32,21 +39,17 @@ sub load_clientapi_modules {
 
 }
 
+=item dispatch [ name ]
+
+=cut
+
 sub dispatch {
   my ( $self, $name ) = ( shift, shift );
   $name =~ s(/)(::)g;
   my $sub = "FS::ClientAPI::$name";
-
-  dbh->{'private_profile'} = {};
-
   warn "$me dispatch: calling $sub with args @_\n" if $DEBUG;
   no strict 'refs';
-  my $rv = &{$sub}(@_);
-
-  warn dbh->sprintProfile if dbh->can('sprintProfile');
-  dbh->{'private_profile'} = {};
-
-  $rv;
+  &{$sub}(@_);
 }
 
 1;