1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Fix reporting of custom fields in webhook data on object deletion

This commit is contained in:
Jeremy Stretch
2019-10-22 16:12:25 -04:00
parent ccb9f7bfe2
commit 0ebc2e4ac0
2 changed files with 13 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ def handle_changed_object(sender, instance, **kwargs):
"""
Fires when an object is created or updated.
"""
# Queue a copy of the object for processing once the request completes
# Queue the object for processing once the request completes
action = OBJECTCHANGE_ACTION_CREATE if kwargs['created'] else OBJECTCHANGE_ACTION_UPDATE
_thread_locals.changed_objects.append(
(instance, action)
@@ -44,7 +44,7 @@ def handle_deleted_object(sender, instance, **kwargs):
if hasattr(instance, 'tags'):
copy.tags = DummyQuerySet(instance.tags.all())
# Queue a copy of the object for processing once the request completes
# Queue the copy of the object for processing once the request completes
_thread_locals.changed_objects.append(
(copy, OBJECTCHANGE_ACTION_DELETE)
)
@@ -100,6 +100,11 @@ class ObjectChangeMiddleware(object):
# Create records for any cached objects that were changed.
for instance, action in _thread_locals.changed_objects:
# Refresh cached custom field values
if action in [OBJECTCHANGE_ACTION_CREATE, OBJECTCHANGE_ACTION_UPDATE]:
if hasattr(instance, 'cache_custom_fields'):
instance.cache_custom_fields()
# Record an ObjectChange if applicable
if hasattr(instance, 'to_objectchange'):
objectchange = instance.to_objectchange(action)