Updating the models to include a standard passcode field.
This commit is contained in:
@@ -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]
|
||||||
|
|
||||||
|
|||||||
@@ -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"???
|
||||||
|
|
||||||
|
|||||||
@@ -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]
|
||||||
|
|
||||||
|
|||||||
@@ -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]
|
||||||
|
|||||||
@@ -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]
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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"???
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user