Minor changes

This commit is contained in:
Scott Idem
2022-09-27 20:53:12 -04:00
parent cb50ae8089
commit a18388e841
9 changed files with 51 additions and 2 deletions

View File

@@ -63,6 +63,9 @@ class Event_Device_Base(BaseModel):
trigger_open_session_id: Optional[str]
trigger_open_session_id: Optional[str]
trigger_recording_start: Optional[bool]
trigger_recording_stop: Optional[bool]
trigger_reset: Optional[bool]
trigger_show_admin: Optional[str]
@@ -72,6 +75,9 @@ class Event_Device_Base(BaseModel):
host_file_temp_path: Optional[str] # Path for copied and renamed temporary files from hash file cache directory
recording_path: Optional[str] # Path to save recordings
record_audio: Optional[bool] # Record
record_video: Optional[bool] # Record
check_event_loop_period: Optional[int]
check_event_device_loop_period: Optional[int]
check_event_location_loop_period: Optional[int]

View File

@@ -42,6 +42,8 @@ class Event_Location_Base(BaseModel):
# New internal use fields to help with logistics and planning 2022-09-15
internal_use: Optional[bool] # Will hide from moderators, presenters, non support people, etc
record_audio: Optional[bool] # Record the sessions in this location
record_video: Optional[bool] # Record the sessions in this location
internal_notes: Optional[str] # general notes
internal_notes_access: Optional[str] # accessibility
internal_notes_av: Optional[str] # audio video

View File

@@ -85,6 +85,8 @@ class Event_Session_Base(BaseModel):
# New internal use fields to help with logistics and planning 2022-09-15
internal_use: Optional[bool] # Will hide from moderators, presenters, non support people, etc
record_audio: Optional[bool] # Record the sessions in this location
record_video: Optional[bool] # Record the sessions in this location
internal_notes: Optional[str] # general notes
internal_notes_access: Optional[str] # accessibility
internal_notes_av: Optional[str] # audio video