14147 make skip empty default to True

This commit is contained in:
Arthur 2023-12-14 10:37:04 -08:00
parent c0e6f6172f
commit 30eb48b580
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ changes in the database indefinitely.
## CHANGELOG_SKIP_EMPTY_CHANGES ## CHANGELOG_SKIP_EMPTY_CHANGES
Default: False Default: True
Enables skipping the creation of logged changes on updates if there were no modifications to the object. Enables skipping the creation of logged changes on updates if there were no modifications to the object.

View File

@ -177,7 +177,7 @@ STORAGE_CONFIG = getattr(configuration, 'STORAGE_CONFIG', {})
TIME_FORMAT = getattr(configuration, 'TIME_FORMAT', 'g:i a') TIME_FORMAT = getattr(configuration, 'TIME_FORMAT', 'g:i a')
TIME_ZONE = getattr(configuration, 'TIME_ZONE', 'UTC') TIME_ZONE = getattr(configuration, 'TIME_ZONE', 'UTC')
ENABLE_LOCALIZATION = getattr(configuration, 'ENABLE_LOCALIZATION', False) ENABLE_LOCALIZATION = getattr(configuration, 'ENABLE_LOCALIZATION', False)
CHANGELOG_SKIP_EMPTY_CHANGES = getattr(configuration, 'CHANGELOG_SKIP_EMPTY_CHANGES', False) CHANGELOG_SKIP_EMPTY_CHANGES = getattr(configuration, 'CHANGELOG_SKIP_EMPTY_CHANGES', True)
# Check for hard-coded dynamic config parameters # Check for hard-coded dynamic config parameters
for param in PARAMS: for param in PARAMS: