From 20a1161e37aa37b27df19b9f39517995db114352 Mon Sep 17 00:00:00 2001 From: padreug Date: Mon, 8 Sep 2025 21:50:54 +0200 Subject: [PATCH] TEMP: set merchant active to True by default --- models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/models.py b/models.py index 1abe075..a6f3c3f 100644 --- a/models.py +++ b/models.py @@ -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