From 63226a388fd8e9ed611cf4b71a302b54bdeb6d40 Mon Sep 17 00:00:00 2001 From: "Wrage, Florian" Date: Tue, 9 Apr 2024 15:48:49 +0200 Subject: [PATCH] Fixes #15640: add identifier field to search index of l2vpn --- netbox/vpn/search.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netbox/vpn/search.py b/netbox/vpn/search.py index 066bc68bb12..c1914dc222d 100644 --- a/netbox/vpn/search.py +++ b/netbox/vpn/search.py @@ -75,6 +75,7 @@ class L2VPNIndex(SearchIndex): fields = ( ('name', 100), ('slug', 110), + ('identifier', 200), ('description', 500), ('comments', 5000), )