[freeside-commits] branch master updated. 5013b675230c3330f25ca0d12ec7dfab95653bcd

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


The branch, master has been updated
       via  5013b675230c3330f25ca0d12ec7dfab95653bcd (commit)
      from  8c060beae4c9fa56bc9f84930e96d8e88b5b8c99 (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 5013b675230c3330f25ca0d12ec7dfab95653bcd
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Sat Dec 28 17:23:19 2013 -0800

    self-service access for contacts, RT#25533

diff --git a/FS/FS/contact.pm b/FS/FS/contact.pm
index b76f0d9..735fe13 100644
--- a/FS/FS/contact.pm
+++ b/FS/FS/contact.pm
@@ -62,6 +62,16 @@ title
 
 comment
 
+=item selfservice_access
+
+empty or Y
+
+=item _password
+
+=item _password_encoding
+
+empty or bcrypt
+
 =item disabled
 
 disabled
@@ -382,6 +392,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