14132 fix serializer

This commit is contained in:
Arthur 2023-11-21 10:02:20 -08:00
parent 245465a425
commit 9c32a68a0f

View File

@ -73,7 +73,7 @@ class EventRuleSerializer(NetBoxModelSerializer):
model = EventRule
fields = [
'id', 'url', 'display', 'content_types', 'name', 'type_create', 'type_update', 'type_delete',
'type_job_start', 'type_job_end', 'enabled', 'conditions', 'action_type', 'action_object_type'
'type_job_start', 'type_job_end', 'enabled', 'conditions', 'action_type', 'action_object_type',
'action_object_id', 'action_object', 'custom_fields', 'tags',
'created', 'last_updated',
]