From f93dc84da5a8d7386ab3acc6003b9a5931ab8b37 Mon Sep 17 00:00:00 2001 From: sniedzielski <52816247+sniedzielski@users.noreply.github.com> Date: Mon, 10 Jun 2024 16:03:30 +0200 Subject: [PATCH] CM-830: added more fields (#19) * CM-830: added grievance for opensearch reporting layer * CM-830: removed processing json ext * CM-830: updated fields --- grievance_social_protection/documents.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/grievance_social_protection/documents.py b/grievance_social_protection/documents.py index 240225f..bf99456 100644 --- a/grievance_social_protection/documents.py +++ b/grievance_social_protection/documents.py @@ -32,6 +32,9 @@ class Index: class Django: model = Ticket fields = [ - 'id', 'key', 'title', 'code' + 'id', 'key', 'title', 'code', + 'description', 'attending_staff', + 'status', 'category', 'flags', + 'channel', 'resolution' ] queryset_pagination = 5000