mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-18 05:28:16 -06:00
14147 make skip empty default to True
This commit is contained in:
parent
c0e6f6172f
commit
30eb48b580
@ -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.
|
||||||
|
|
||||||
|
@ -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:
|
||||||
|
Loading…
Reference in New Issue
Block a user