From 8f2cfb0544a06aff38c01f19c40ea373b3d671b5 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Fri, 3 Oct 2025 06:11:01 -0500 Subject: [PATCH] backend --- frigate/config/classification.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/frigate/config/classification.py b/frigate/config/classification.py index 98e0db046..5cc07d28a 100644 --- a/frigate/config/classification.py +++ b/frigate/config/classification.py @@ -138,6 +138,9 @@ class SemanticSearchConfig(FrigateBaseModel): class TriggerConfig(FrigateBaseModel): + friendly_name: Optional[str] = Field( + None, title="Trigger friendly name used in the Frigate UI." + ) enabled: bool = Field(default=True, title="Enable this trigger") type: TriggerType = Field(default=TriggerType.DESCRIPTION, title="Type of trigger") data: str = Field(title="Trigger content (text phrase or image ID)")