Work on better way to update objects.

This commit is contained in:
Scott Idem
2021-06-10 15:23:57 -04:00
parent 264fced5a6
commit b8da9d99eb
13 changed files with 459 additions and 145 deletions

View File

@@ -87,7 +87,7 @@ class Event_Session_Base(BaseModel):
updated_on: Optional[datetime.datetime] = None
# Including other related objects
#event: Optional[Event_Base]
# event: Optional[Event_Base]
event_abstract_list: Optional[list] # Optional[Event_Abstract_Base]
event_badge_list: Optional[list] # Optional[Event_Abstract_Base]
event_device_list: Optional[list] # Optional[Event_Device_Base]

View File

@@ -232,6 +232,7 @@ class User_Base(BaseModel):
email: Optional[str]
email_verified: Optional[bool]
password: Optional[str]
new_password: Optional[str]
allow_auth_key: Optional[int]
auth_key: Optional[str]