This is an automated email from the ASF dual-hosted git repository.

asf-gitbox-commits pushed a commit to branch cc/11102-part2b
in repository https://gitbox.apache.org/repos/asf/allura.git

commit f7a3e6755b7206e88382aeae95997c0d0a239a9a
Author: Carlos Cruz <[email protected]>
AuthorDate: Fri Apr 24 11:21:54 2026 -0600

    [#8604] Add the display_name_encrypted field to the User class
---
 Allura/allura/model/auth.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Allura/allura/model/auth.py b/Allura/allura/model/auth.py
index 89df3aa9a..f63100179 100644
--- a/Allura/allura/model/auth.py
+++ b/Allura/allura/model/auth.py
@@ -303,6 +303,7 @@ class __mongometa__:
     # Additional top-level fields can/should be accessed with get/set_pref also
     # Not sure why we didn't put them within the 'preferences' dictionary :(
     display_name: str = FieldPropertyDisplayName(str)
+    display_name_encrypted = FieldProperty(S.Binary, if_missing=None)
     # Personal data
     sex = FieldProperty(
         S.OneOf('Male', 'Female', 'Other', 'Unknown',

Reply via email to