This is an automated email from the ASF dual-hosted git repository. brondsem pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/allura.git
commit 8ad3b61d9c632d5f81800158224bb13ab96852b4 Author: Guillermo Cruz <[email protected]> AuthorDate: Fri Sep 3 09:55:40 2021 -0600 added two new model fields to store additional email information --- Allura/allura/model/auth.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Allura/allura/model/auth.py b/Allura/allura/model/auth.py index 0456d1b..f157a35 100644 --- a/Allura/allura/model/auth.py +++ b/Allura/allura/model/auth.py @@ -83,7 +83,8 @@ class EmailAddress(MappedClass): claimed_by_user_id = FieldProperty(S.ObjectId, if_missing=None) confirmed = FieldProperty(bool, if_missing=False) nonce = FieldProperty(str) - + valid_address = FieldProperty(bool, if_missing=None) + address_details = FieldProperty(S.Anything, if_missing=None) @classmethod def get(cls, **kw): '''Equivalent to Ming's query.get but calls self.canonical on address
