Add file processing notifications feature

Co-authored-by: christianlouis <361235+christianlouis@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-06 22:31:48 +00:00
parent dafa89883f
commit 8be5b844c3
6 changed files with 287 additions and 1 deletions
+4
View File
@@ -156,6 +156,10 @@ class Settings(BaseSettings):
default=False,
description="Send notifications when application shuts down"
)
notify_on_file_processed: bool = Field(
default=True,
description="Send notifications when files are successfully processed"
)
@validator('notification_urls', pre=True)
def parse_notification_urls(cls, v):