diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-07-10 09:52:54 -0400 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-08-02 16:24:39 -0400 |
commit | 31f1e1bd302bd88d97d56b20dffad5c5f2388261 (patch) | |
tree | 145ad9c2d0a2e4dd444a31683438a77a2dd770b7 /FS | |
parent | 57290f5ec7acdfd413cbd6c24026ce153efd9f14 (diff) |
RT# 74537 - Added new selfservice config option to make ECHECK readonly on selfservice, updated selfservice and NGselfservice to look for this option
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/ClientAPI/MyAccount.pm | 1 | ||||
-rw-r--r-- | FS/FS/Conf.pm | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/FS/FS/ClientAPI/MyAccount.pm b/FS/FS/ClientAPI/MyAccount.pm index 558e694b2..4614af2f5 100644 --- a/FS/FS/ClientAPI/MyAccount.pm +++ b/FS/FS/ClientAPI/MyAccount.pm @@ -867,6 +867,7 @@ sub payment_info { 'show_paystate' => $conf->exists('show_bankstate'), 'save_unchecked' => $conf->exists('selfservice-save_unchecked'), + 'ach_read_only' => $conf->exists('selfservice-ACH_info_readonly'), }; diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index c0e7cd0be..77add5d97 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -6109,6 +6109,13 @@ and customer address. Include units.', }, { + 'key' => 'selfservice-ACH_info_readonly', + 'section' => 'self-service', + 'description' => 'make ACH on self service portal read only', + 'type' => 'checkbox', + }, + + { 'key' => 'selfservice-announcement', 'section' => 'self-service', 'description' => 'HTML announcement to display to all authenticated users on account overview page', |