Work on better way to update objects. A lot of work! Also a lot of clean up.
This commit is contained in:
@@ -12,6 +12,7 @@ from app.models.account_cfg_models import Account_Cfg_Base
|
||||
# from app.models.address_models import Address_Base
|
||||
# from app.models.contact_models import Contact_Base
|
||||
# from app.models.event_models import Event_Base
|
||||
from app.models.fundraising_cfg_models import Fundraising_Cfg_Base
|
||||
# from app.models.person_models import Person_Base
|
||||
# from app.models.user_models import User_Base
|
||||
|
||||
@@ -48,15 +49,16 @@ class Account_Base(BaseModel):
|
||||
archive_list: Optional[list] # Archive_Base()
|
||||
contact_list: Optional[list] # Contact_Base()
|
||||
event_list: Optional[list] # Event_Base()
|
||||
fundraising_cfg: Optional[Fundraising_Cfg_Base]
|
||||
journal_list: Optional[list] # Journal_Base()
|
||||
order_list: Optional[list] # Order_Base()
|
||||
organization_list: Optional[list] # Organization_Base()
|
||||
page: Optional[list] # Page_Base()
|
||||
person: Optional[list] # Person_Base()
|
||||
post: Optional[list] # Post_Base()
|
||||
product: Optional[list] # Product_Base()
|
||||
site: Optional[list] # Site_Base()
|
||||
user: Optional[list] # User_Base()
|
||||
page_list: Optional[list] # Page_Base()
|
||||
person_list: Optional[list] # Person_Base()
|
||||
post_list: Optional[list] # Post_Base()
|
||||
product_list: Optional[list] # Product_Base()
|
||||
site_list: Optional[list] # Site_Base()
|
||||
user_list: Optional[list] # User_Base()
|
||||
|
||||
_processed_at: datetime.datetime = PrivateAttr(default_factory=datetime.datetime.now)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user