From eba3456b7b70e7df45dec36e2b2e8c9f98267913 Mon Sep 17 00:00:00 2001 From: Scott Idem Date: Tue, 7 Apr 2026 13:00:49 -0400 Subject: [PATCH] =?UTF-8?q?model:=20event=5Fbadge=5Ftemplate=20=E2=80=94?= =?UTF-8?q?=20add=20background=5Fimage=5Fpath=20and=20cfg=5Fjson=20fields?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/models/event_badge_template_models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/models/event_badge_template_models.py b/app/models/event_badge_template_models.py index 0aded0b..6226438 100644 --- a/app/models/event_badge_template_models.py +++ b/app/models/event_badge_template_models.py @@ -37,6 +37,7 @@ class Event_Badge_Template_Base(BaseModel): header_background: Optional[str] secondary_header_path: Optional[str] # Path to image file for back of badge and other sections + background_image_path: Optional[str] footer_path: Optional[str] # Path to image file footer_title: Optional[str] @@ -74,6 +75,7 @@ class Event_Badge_Template_Base(BaseModel): passcode: Optional[str] other_json: Optional[str] + cfg_json: Optional[Json] enable: Optional[bool] hide: Optional[bool]