mirror of
https://github.com/netbox-community/netbox.git
synced 2025-08-18 13:38:16 -06:00
Add action_object field to EventRuleSerializer
This commit is contained in:
parent
bbd008e152
commit
d14e868e46
@ -68,16 +68,21 @@ class EventRuleSerializer(NetBoxModelSerializer):
|
|||||||
many=True
|
many=True
|
||||||
)
|
)
|
||||||
action_type = ChoiceField(choices=EventRuleActionChoices)
|
action_type = ChoiceField(choices=EventRuleActionChoices)
|
||||||
|
action_object = serializers.SerializerMethodField(read_only=True)
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
model = EventRule
|
model = EventRule
|
||||||
fields = [
|
fields = [
|
||||||
'id', 'url', 'display', 'content_types', 'name', 'type_create', 'type_update', 'type_delete',
|
'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', 'custom_fields', 'tags',
|
'action_object_id', 'action_object', 'custom_fields', 'tags', 'created', 'last_updated',
|
||||||
'created', 'last_updated',
|
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@extend_schema_field(serializers.JSONField(allow_null=True))
|
||||||
|
def get_action_object(self, instance):
|
||||||
|
serializer = get_serializer_for_model(instance.action_object, prefix=NESTED_SERIALIZER_PREFIX)
|
||||||
|
return serializer(instance.action_object, context={'request': self.context['request']}).data
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
# Webhooks
|
# Webhooks
|
||||||
|
Loading…
Reference in New Issue
Block a user