Updating the models to include a standard passcode field.

This commit is contained in:
Scott Idem
2024-06-10 19:40:35 -04:00
parent 52be61570a
commit 6691f2a701
7 changed files with 14 additions and 0 deletions

View File

@@ -83,6 +83,8 @@ class Event_Device_Base(BaseModel):
check_event_location_loop_period: Optional[int] check_event_location_loop_period: Optional[int]
check_event_session_loop_period: Optional[int] check_event_session_loop_period: Optional[int]
passcode: Optional[str]
alert: Optional[bool] alert: Optional[bool]
alert_msg: Optional[str] alert_msg: Optional[str]

View File

@@ -55,6 +55,8 @@ class Event_Location_Base(BaseModel):
internal_notes_it: Optional[str] # IT and networking internal_notes_it: Optional[str] # IT and networking
internal_notes_staff: Optional[str] # staffing and labor internal_notes_staff: Optional[str] # staffing and labor
passcode: Optional[str]
file_count: Optional[int] file_count: Optional[int]
internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"??? internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"???

View File

@@ -119,6 +119,7 @@ class Event_Base(BaseModel):
# NOT FINISHED YET # NOT FINISHED YET
# access_key: Optional[str] # Maybe use in the future? # access_key: Optional[str] # Maybe use in the future?
passcode: Optional[str]
file_count: Optional[int] file_count: Optional[int]
@@ -379,6 +380,7 @@ class Event_Meeting_Flat_Base(BaseModel):
# NOT FINISHED YET # NOT FINISHED YET
# access_key: Optional[str] # Maybe use in the future? # access_key: Optional[str] # Maybe use in the future?
passcode: Optional[str]
file_count: Optional[int] file_count: Optional[int]

View File

@@ -67,6 +67,8 @@ class Event_Person_Base(BaseModel):
agree_to_tc: Optional[bool] # Agree to terms and conditions agree_to_tc: Optional[bool] # Agree to terms and conditions
allow_tracking: Optional[bool] # Allow tracking for lead retrieval and other marketing allow_tracking: Optional[bool] # Allow tracking for lead retrieval and other marketing
passcode: Optional[str] # Passcode for accessing the event
file_count: Optional[int] file_count: Optional[int]
priority: Optional[bool] priority: Optional[bool]

View File

@@ -64,6 +64,8 @@ class Event_Presentation_Base(BaseModel):
start_datetime: Optional[datetime.datetime] start_datetime: Optional[datetime.datetime]
end_datetime: Optional[datetime.datetime] end_datetime: Optional[datetime.datetime]
passcode: Optional[str]
file_count: Optional[int] file_count: Optional[int]
enable: Optional[bool] enable: Optional[bool]

View File

@@ -106,6 +106,8 @@ class Event_Presenter_Base(BaseModel):
role: Optional[str] role: Optional[str]
passcode: Optional[str]
file_count: Optional[int] file_count: Optional[int]
# General catchall for agreement or consent # General catchall for agreement or consent

View File

@@ -94,6 +94,8 @@ class Event_Session_Base(BaseModel):
internal_notes_it: Optional[str] # IT and networking internal_notes_it: Optional[str] # IT and networking
internal_notes_staff: Optional[str] # staffing and labor internal_notes_staff: Optional[str] # staffing and labor
passcode: Optional[str]
file_count: Optional[int] file_count: Optional[int]
internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"??? internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"???