TEMP: set merchant active to True by default

This commit is contained in:
padreug 2025-09-08 21:50:54 +02:00
parent 0b7639adf5
commit 20a1161e37

View file

@ -40,7 +40,8 @@ class MerchantProfile(BaseModel):
class MerchantConfig(MerchantProfile):
event_id: Optional[str] = None
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