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