Moving stuff around to make it more easy to manage. Adding models, methods, and routes.

This commit is contained in:
Scott Idem
2021-06-11 14:07:10 -04:00
parent 9c679765e5
commit 03bb55e62a
12 changed files with 473 additions and 116 deletions

View File

@@ -99,6 +99,9 @@ class Event_Base(BaseModel):
created_on: Optional[datetime.datetime] = None
updated_on: Optional[datetime.datetime] = None
# Including JSON data
event_session_proposal_questions: Optional[Json] # list of dicts (custom for client) for event_session proposals
# Including other related objects
address_location: Optional[Address_Base]
contact_1: Optional[Contact_Base]