Change default value for auto-backup setting (#4189)

This commit is contained in:
Oliver 2023-01-10 00:02:50 +11:00 committed by GitHub
parent b9b26307b1
commit 0ed2aa3a4d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -930,7 +930,7 @@ class InvenTreeSetting(BaseInvenTreeSetting):
'name': _('Automatic Backup'),
'description': _('Enable automatic backup of database and media files'),
'validator': bool,
'default': True,
'default': False,
},
'INVENTREE_DELETE_TASKS_DAYS': {