diff options
author | ivan <ivan> | 2010-11-12 01:17:18 +0000 |
---|---|---|
committer | ivan <ivan> | 2010-11-12 01:17:18 +0000 |
commit | 886357c11bf29fc9edd1113ef81d51efe5bf9ca7 (patch) | |
tree | 099775d7cf3f2fa7d52bfa9c5f2f25a92159ce93 /FS | |
parent | 033709735189caa804476fc17e9946809516fcf7 (diff) |
agent username/password, RT#9608
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/Conf.pm | 7 | ||||
-rw-r--r-- | FS/FS/Schema.pm | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/FS/FS/Conf.pm b/FS/FS/Conf.pm index 8fce99024..a3f1b5422 100644 --- a/FS/FS/Conf.pm +++ b/FS/FS/Conf.pm @@ -2287,6 +2287,13 @@ and customer address. Include units.', }, { + 'key' => 'selfservice-agent_login', + 'section' => 'self-service', + 'description' => 'Allow agent login via self-service.', + 'type' => 'checkbox', + }, + + { 'key' => 'card_refund-days', 'section' => 'billing', 'description' => 'After a payment, the number of days a refund link will be available for that payment. Defaults to 120.', diff --git a/FS/FS/Schema.pm b/FS/FS/Schema.pm index b8ba5b2d4..f63bae929 100644 --- a/FS/FS/Schema.pm +++ b/FS/FS/Schema.pm @@ -352,8 +352,8 @@ sub tables_hashref { 'invoice_template', 'varchar', 'NULL', $char_d, '', '', 'agent_custnum', 'int', 'NULL', '', '', '', 'disabled', 'char', 'NULL', 1, '', '', - 'username', 'varchar', 'NULL', $char_d, '', '', #deprecated - '_password', 'varchar', 'NULL', $char_d, '', '', #deprecated + 'username', 'varchar', 'NULL', $char_d, '', '', + '_password', 'varchar', 'NULL', $char_d, '', '', 'freq', 'int', 'NULL', '', '', '', #deprecated (never used) 'prog', @perl_type, '', '', #deprecated (never used) ], |