From 4c789225b2e13b08fe57a963c0135148c656568b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Ros?= Date: Thu, 30 Mar 2023 11:44:15 -0700 Subject: [PATCH] Added agent's custom fields to table result This action is to enable search and summary in the dashboard view. --- api/tacticalrmm/agents/serializers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/tacticalrmm/agents/serializers.py b/api/tacticalrmm/agents/serializers.py index bcc6e9ae..bc0b0b28 100644 --- a/api/tacticalrmm/agents/serializers.py +++ b/api/tacticalrmm/agents/serializers.py @@ -95,6 +95,7 @@ class AgentTableSerializer(serializers.ModelSerializer): local_ips = serializers.ReadOnlyField() make_model = serializers.ReadOnlyField() physical_disks = serializers.ReadOnlyField() + custom_fields = AgentCustomFieldSerializer(many=True, read_only=True) def get_alert_template(self, obj): if not obj.alert_template: @@ -153,6 +154,7 @@ class AgentTableSerializer(serializers.ModelSerializer): "local_ips", "make_model", "physical_disks", + "custom_fields", ] depth = 2