From 9308c5d0dece0c4775a1123c96856c7eeaa4f333 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Fri, 20 Oct 2023 11:23:28 -0400 Subject: [PATCH] Updates for event_presenter_model fields --- app/models/event_presenter_models.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/app/models/event_presenter_models.py b/app/models/event_presenter_models.py index 2fc3de6..e89be3f 100644 --- a/app/models/event_presenter_models.py +++ b/app/models/event_presenter_models.py @@ -63,7 +63,7 @@ class Event_Presenter_Base(BaseModel): informal_name: Optional[str] # Informal or nick name they commonly go by title_names: Optional[str] # Title for generation, official position, or professional or academic qualification, other honorific, or other name prefix - prefix: Optional[str] # NOTE: Phasing out! Use *title_names* instead. + # prefix: Optional[str] # NOTE: Phasing out! Use *title_names* instead. given_name: Optional[str] middle_name: Optional[str] family_name: Optional[str] @@ -71,11 +71,13 @@ class Event_Presenter_Base(BaseModel): suffix: Optional[str] # NOTE: Phasing out! Use *designations* instead. professional_title: Optional[str] # Professional title - title: Optional[str] # NOTE: Phasing out! Use *professional_title* instead. + # title: Optional[str] # NOTE: Phasing out! Use *professional_title* instead. - display_name: Optional[str] # Custom what they want for public display + display_name: Optional[str] # NOTE: This will be changed to full_name_override to match event_badge - full_name: Optional[str] + # BEGIN # Auto created name variations + full_name: Optional[str] # title_names given_name middle_name family_name designations + full_name_override: Optional[str] # # Override full_name; Actual name shown on badge and other "public" areas # degree: Optional[str] # NOTE: Phasing out! Use *designations* instead. # degrees: Optional[str] # NOTE: Phasing out! Use *designations* instead.