diff --git a/app/models/event_location_models.py b/app/models/event_location_models.py index 762c591..037ee9c 100644 --- a/app/models/event_location_models.py +++ b/app/models/event_location_models.py @@ -62,6 +62,8 @@ class Event_Location_Base(BaseModel): file_count: Optional[int] internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"??? + event_file_id_li_json: Optional[Union[Json, None]] # List of file IDs (actually id_random) + file_count_all: Optional[int] # Of all files under a location alert: Optional[bool] alert_msg: Optional[str] diff --git a/app/models/event_presenter_models.py b/app/models/event_presenter_models.py index e3f59c8..fa90814 100644 --- a/app/models/event_presenter_models.py +++ b/app/models/event_presenter_models.py @@ -110,7 +110,7 @@ class Event_Presenter_Base(BaseModel): cfg_json: Optional[Union[Json, None]] # Store per presenter config options like theme, language, etc data_json: Optional[Union[Json, None]] # For key value data. Careful with overwriting existing fields! - file_count: Optional[int] + file_count: Optional[int] # File count for the presenter event_file_id_li_json: Optional[Union[Json, None]] # List of file IDs (actually id_random) # General catchall for agreement or consent diff --git a/app/models/event_session_models.py b/app/models/event_session_models.py index b8ed1c0..94ba7aa 100644 --- a/app/models/event_session_models.py +++ b/app/models/event_session_models.py @@ -100,7 +100,7 @@ class Event_Session_Base(BaseModel): file_count: Optional[int] # Only files directly under the session internal_use_count: Optional[int] # Should be renamed to "internal_use_file_count"??? event_file_id_li_json: Optional[Union[Json, None]] # List of file IDs (actually id_random) - file_count_all: Optional[int] # All files under a session + file_count_all: Optional[int] # Of all files under a session status: Optional[int] review: Optional[bool] diff --git a/app/routers/api_crud.py b/app/routers/api_crud.py index 1bef5a1..aafb24e 100644 --- a/app/routers/api_crud.py +++ b/app/routers/api_crud.py @@ -366,7 +366,7 @@ def handle_get_obj_li( commons: Common_Route_Params = None, ): - log.setLevel(logging.INFO) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL + log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL log.debug(locals()) import urllib @@ -770,7 +770,7 @@ def handle_get_obj_id( - /order/cart/line = order_cart_line - /lu/some_lookup = lu_some_lookup """ - log.setLevel(logging.INFO) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL + log.setLevel(logging.WARNING) # DEBUG, INFO, WARNING, ERROR, EXCEPTION, CRITICAL log.debug(locals()) # NOTE: WARNING NOTE: WARNING NOTE: WARNING NOTE: WARNING NOTE: WARNING NOTE: WARNING NOTE: WARNING