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 682d7f4996fd0e0fc65daa90a1a0f3212b6723f6 Author: Guillermo Cruz <[email protected]> AuthorDate: Mon Sep 13 12:47:07 2021 -0600 renamed model field and added a datetime field --- Allura/allura/model/auth.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Allura/allura/model/auth.py b/Allura/allura/model/auth.py index f157a35..6fe551d 100644 --- a/Allura/allura/model/auth.py +++ b/Allura/allura/model/auth.py @@ -84,7 +84,9 @@ class EmailAddress(MappedClass): confirmed = FieldProperty(bool, if_missing=False) nonce = FieldProperty(str) valid_address = FieldProperty(bool, if_missing=None) - address_details = FieldProperty(S.Anything, if_missing=None) + valid_details = FieldProperty(S.Anything, if_missing=None) + valid_check_date = FieldProperty(datetime, if_missing=None) + @classmethod def get(cls, **kw): '''Equivalent to Ming's query.get but calls self.canonical on address
