[freeside-commits] freeside/FS/FS Conf.pm, 1.476, 1.477 ClientAPI_XMLRPC.pm, 1.9, 1.10

Ivan,,, ivan at wavetail.420.am
Sat Oct 8 14:55:21 PDT 2011


Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv19092/FS/FS

Modified Files:
	Conf.pm ClientAPI_XMLRPC.pm 
Log Message:
add switch_acct and reset_passwd to self-service API, RT#13656

Index: Conf.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Conf.pm,v
retrieving revision 1.476
retrieving revision 1.477
diff -u -w -d -r1.476 -r1.477
--- Conf.pm	28 Sep 2011 23:29:36 -0000	1.476
+++ Conf.pm	8 Oct 2011 21:55:19 -0000	1.477
@@ -2467,6 +2467,16 @@
   },
   
   {
+    'key'         => 'selfservice-password_reset_verification',
+    'section'     => 'self-service',
+    'description' => 'If enabled, specifies the type of verification required for self-service password resets.',
+    'type'        => 'select',
+    'select_hash' => [ '' => 'Password reset disabled',
+                       'paymask,amount,zip' => 'Verify with credit card (or bank account) last 4 digits, payment amount and zip code',
+                     ],
+  },
+  
+  {
     'key'         => 'selfservice-recent-did-age',
     'section'     => 'self-service',
     'description' => 'If specified, defines "recent", in number of seconds, for "Download recently allocated DIDs" in self-service.',

Index: ClientAPI_XMLRPC.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/ClientAPI_XMLRPC.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -w -d -r1.9 -r1.10
--- ClientAPI_XMLRPC.pm	6 Oct 2011 20:44:17 -0000	1.9
+++ ClientAPI_XMLRPC.pm	8 Oct 2011 21:55:19 -0000	1.10
@@ -66,6 +66,7 @@
   'login_info'                => 'MyAccount/login_info',
   'login'                     => 'MyAccount/login',
   'logout'                    => 'MyAccount/logout',
+  'switch_acct'               => 'MyAccount/switch_acct',
   'customer_info'             => 'MyAccount/customer_info',
   'customer_info_short'       => 'MyAccount/customer_info_short',
   'edit_info'                 => 'MyAccount/edit_info',     #add to ss cgi!
@@ -107,6 +108,7 @@
   'provision_external'        => 'MyAccount/provision_external',
   'unprovision_svc'           => 'MyAccount/unprovision_svc',
   'myaccount_passwd'          => 'MyAccount/myaccount_passwd',
+  'reset_passwd'              => 'MyAccount/reset_passwd',
   'create_ticket'             => 'MyAccount/create_ticket',
   'get_ticket'                => 'MyAccount/get_ticket',
   'adjust_ticket_priority'    => 'MyAccount/adjust_ticket_priority',



More information about the freeside-commits mailing list