Enhancement: Update default backup settings to enable backups and set retention count to 3

This commit is contained in:
SergeantPanda 2025-12-19 10:40:56 -06:00
parent b83f12809f
commit 5371519d8a

View file

@ -19,11 +19,11 @@ SETTING_KEYS = {
}
DEFAULTS = {
"enabled": False,
"enabled": True,
"frequency": "daily",
"time": "03:00",
"day_of_week": 0, # Sunday
"retention_count": 0,
"retention_count": 3,
"cron_expression": "",
}