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 e0ea77d5e3c34a22e00a202e7e97cdc94e51f176
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 22eee8722..1dfce31f9 100644
--- a/Allura/allura/model/auth.py
+++ b/Allura/allura/model/auth.py
@@ -310,6 +310,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