From: ivan Date: Fri, 19 Sep 2003 11:36:08 +0000 (+0000) Subject: finish moving signup server functions to self-service interface X-Git-Tag: freeside_1_4_2beta1~511 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=658ebc54795189b23a6080609e6c6a3da86db765;p=freeside.git finish moving signup server functions to self-service interface --- diff --git a/fs_selfservice/FS-SelfService/SelfService.pm b/fs_selfservice/FS-SelfService/SelfService.pm index 4d68d614a..9cbbf0eba 100644 --- a/fs_selfservice/FS-SelfService/SelfService.pm +++ b/fs_selfservice/FS-SelfService/SelfService.pm @@ -15,14 +15,17 @@ $VERSION = '0.03'; $socket = "/usr/local/freeside/selfservice_socket"; +#maybe should ask ClientAPI for this list %autoload = ( - 'passwd' => 'passwd/passwd', - 'chfn' => 'passwd/passwd', - 'chsh' => 'passwd/passwd', - 'login' => 'MyAccount/login', - 'customer_info' => 'MyAccount/customer_info', - 'invoice' => 'MyAccount/invoice', - 'cancel' => 'MyAccount/cancel', + 'passwd' => 'passwd/passwd', + 'chfn' => 'passwd/passwd', + 'chsh' => 'passwd/passwd', + 'login' => 'MyAccount/login', + 'customer_info' => 'MyAccount/customer_info', + 'invoice' => 'MyAccount/invoice', + 'cancel' => 'MyAccount/cancel', + 'signup_info' => 'Signup/signup_info', + 'new_customer' => 'Signup/new_customer', ); @EXPORT_OK = keys %autoload;