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 rwxd
parent b7668fbfc3
commit 63226a388f
No known key found for this signature in database
GPG Key ID: 8C3FE917649EDF11

View File

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