TEMP: set merchant active to True by default
This commit is contained in:
parent
7245123e49
commit
0fec454006
1 changed files with 4 additions and 3 deletions
|
|
@ -43,10 +43,11 @@ class MerchantProfile(BaseModel):
|
||||||
|
|
||||||
|
|
||||||
class MerchantConfig(MerchantProfile):
|
class MerchantConfig(MerchantProfile):
|
||||||
event_id: str | None = None
|
event_id: Optional[str] = None
|
||||||
sync_from_nostr: bool = False
|
sync_from_nostr: bool = False
|
||||||
active: bool = False
|
# TODO: switched to True for AIO demo; determine if we leave this as True
|
||||||
restore_in_progress: bool | None = False
|
active: bool = True
|
||||||
|
restore_in_progress: Optional[bool] = False
|
||||||
|
|
||||||
|
|
||||||
class CreateMerchantRequest(BaseModel):
|
class CreateMerchantRequest(BaseModel):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue