feat: add zones friendly_name

This commit is contained in:
ZhaiSoul
2025-10-22 07:07:39 +00:00
parent c5fec3271f
commit 36b2043518
31 changed files with 198 additions and 76 deletions
+3
View File
@@ -13,6 +13,9 @@ logger = logging.getLogger(__name__)
class ZoneConfig(BaseModel):
friendly_name: Optional[str] = Field(
None, title="Zone friendly name used in the Frigate UI."
)
filters: dict[str, FilterConfig] = Field(
default_factory=dict, title="Zone filters."
)