Fixes #15640: add identifier field to search index of l2vpn

This commit is contained in:
Wrage, Florian 2024-04-09 15:48:49 +02:00 committed by Jeremy Stretch
parent 5098422f68
commit f7e4fe2a9c
1 changed files with 1 additions and 0 deletions

View File

@ -75,6 +75,7 @@ class L2VPNIndex(SearchIndex):
fields = (
('name', 100),
('slug', 110),
('identifier', 200),
('description', 500),
('comments', 5000),
)