From 5db82d37b6a3bc551e71f14eeab6d1bf118506d5 Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Mon, 8 Jun 2026 10:47:56 -0300 Subject: [PATCH] feat: add group type to search index --- ietf/utils/searchindex.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ietf/utils/searchindex.py b/ietf/utils/searchindex.py index 6a8f4529a8..4e1ee27895 100644 --- a/ietf/utils/searchindex.py +++ b/ietf/utils/searchindex.py @@ -171,6 +171,7 @@ def typesense_doc_from_rfc(rfc: Document) -> DocumentSchema: "acronym": rfc.group.acronym, "name": rfc.group.name, "full": f"{rfc.group.acronym} - {rfc.group.name}", + "type": rfc.group.type.slug, } if ( rfc.group.parent is not None