Working on stuff related to session proposals. Again... I think it all works now.
This commit is contained in:
@@ -11,6 +11,7 @@ from app.models.common_field_schema import base_fields, default_num_bytes
|
||||
# from app.models.event_models import Event_Base
|
||||
from app.models.event_location_models import Event_Location_Base
|
||||
from app.models.event_person_models import Event_Person_Base # NOTE: Using this will probably create an import loop
|
||||
from app.models.event_presentation_models import Event_Presentation_Base
|
||||
from app.models.event_track_models import Event_Track_Base
|
||||
from app.models.person_models import Person_Base
|
||||
|
||||
@@ -98,7 +99,7 @@ class Event_Session_Base(BaseModel):
|
||||
event_location: Optional[Union[Event_Location_Base, None]]
|
||||
event_person_list: Optional[list]
|
||||
event_presenter_cat: Optional[Union[str, None]]
|
||||
event_presentation_list: Optional[list] # Optional[Event_Presentation_Base]
|
||||
event_presentation_list: Optional[list[Event_Presentation_Base]] # Optional[Event_Presentation_Base]
|
||||
event_presenter_list: Optional[list] # Optional[Event_Presenter_Base]
|
||||
event_track: Optional[Event_Track_Base]
|
||||
poc_event_person: Optional[Event_Person_Base] # NOTE: Using thi will probably create an import loop
|
||||
|
||||
Reference in New Issue
Block a user