From 14682fc20c42490a7d51848b7e75521fba79871e Mon Sep 17 00:00:00 2001 From: Bryan Van Deusen Date: Fri, 17 Apr 2026 23:06:12 -0400 Subject: [PATCH] feat(settings): add dashboard.failure_threshold default (5) --- backend/app/models/setting.py | 1 + 1 file changed, 1 insertion(+) diff --git a/backend/app/models/setting.py b/backend/app/models/setting.py index bea6c1f..a2427e1 100644 --- a/backend/app/models/setting.py +++ b/backend/app/models/setting.py @@ -43,6 +43,7 @@ DEFAULT_SETTINGS = { "download.schedule_interval": 28800, # 8 hours "notification.enabled": False, "notification.webhook_url": None, + "dashboard.failure_threshold": 5, } # Key for the extension API key setting