[freeside-commits] branch FREESIDE_3_BRANCH updated. 0b38843f4107444033299fefa001cfaec9c083d9

Ivan ivan at 420.am
Sat Dec 28 17:23:21 PST 2013


The branch, FREESIDE_3_BRANCH has been updated
       via  0b38843f4107444033299fefa001cfaec9c083d9 (commit)
      from  1d922daa0a13eec5f7ea97159f6fe588d6bcee71 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 0b38843f4107444033299fefa001cfaec9c083d9
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Sat Dec 28 17:23:20 2013 -0800

    self-service access for contacts, RT#25533

diff --git a/FS/FS/contact.pm b/FS/FS/contact.pm
index da6f2eb..9b4546e 100644
--- a/FS/FS/contact.pm
+++ b/FS/FS/contact.pm
@@ -68,6 +68,16 @@ title
 
 comment
 
+=item selfservice_access
+
+empty or Y
+
+=item _password
+
+=item _password_encoding
+
+empty or bcrypt
+
 =item disabled
 
 disabled
@@ -388,6 +398,9 @@ sub check {
     || $self->ut_namen('first')
     || $self->ut_textn('title')
     || $self->ut_textn('comment')
+    || $self->ut_enum('selfservice_access', [ '', 'Y' ])
+    || $self->ut_textn('_password')
+    || $self->ut_enum('_password_encoding', [ '', 'bcrypt'])
     || $self->ut_enum('disabled', [ '', 'Y' ])
   ;
   return $error if $error;

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/contact.pm |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)




More information about the freeside-commits mailing list