瀏覽代碼

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

Wrage, Florian 2 年之前
父節點
當前提交
f7e4fe2a9c
共有 1 個文件被更改,包括 1 次插入0 次删除
  1. 1 0
      netbox/vpn/search.py

+ 1 - 0
netbox/vpn/search.py

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