TEMP: set merchant active to True by default

This commit is contained in:
padreug 2025-09-08 21:50:54 +02:00 committed by Patrick Mulligan
parent 7245123e49
commit 0fec454006

View file

@ -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):