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

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

commit 1acb3055fc0a5afb4fce8ca937c04567bd971edf
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 b3eee63fc..1f44966e5 100644
--- a/Allura/allura/model/auth.py
+++ b/Allura/allura/model/auth.py
@@ -294,6 +294,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