Work on order and Strip related. Also general code clean up

This commit is contained in:
Scott Idem
2022-01-25 20:01:46 -05:00
parent 86b06226cb
commit 59b263e5b8
5 changed files with 19 additions and 8 deletions

View File

@@ -85,9 +85,9 @@ class Account_Cfg_Base(BaseModel):
hide_posts_after: Optional[int] # Should posts be singular?
delete_posts_after: Optional[int] # Should posts be singular?
stripe_api_key: Optional[str]
stripe_publishable_key: Optional[str]
stripe_account_id: Optional[str]
stripe_api_key: Optional[str] # Secret/Private
stripe_publishable_key: Optional[str] # Publish/Sharable
stripe_account_id: Optional[str] # Connected Stripe Account ID
created_on: Optional[datetime.datetime] = None
updated_on: Optional[datetime.datetime] = None