Просмотр исходного кода

Change Prefix and Aggregate search index weights to better order search results.

kkthxbye-code 3 лет назад
Родитель
Сommit
25278becef
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      netbox/ipam/search.py

+ 2 - 2
netbox/ipam/search.py

@@ -6,7 +6,7 @@ from netbox.search import SearchIndex, register_search
 class AggregateIndex(SearchIndex):
     model = models.Aggregate
     fields = (
-        ('prefix', 100),
+        ('prefix', 120),
         ('description', 500),
         ('date_added', 2000),
         ('comments', 5000),
@@ -70,7 +70,7 @@ class L2VPNIndex(SearchIndex):
 class PrefixIndex(SearchIndex):
     model = models.Prefix
     fields = (
-        ('prefix', 100),
+        ('prefix', 110),
         ('description', 500),
         ('comments', 5000),
     )