소스 검색

fix(ipam): Add comments field to ASN search indexing (#22739)

Include comments field in ASN search with weight 5000 to enable
full-text search on ASN comment content.

Fixes #22736
Martin Hauser 6 일 전
부모
커밋
84a024babd
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      netbox/ipam/search.py

+ 1 - 0
netbox/ipam/search.py

@@ -22,6 +22,7 @@ class ASNIndex(SearchIndex):
         ('asn', 100),
         ('prefixed_name', 110),
         ('description', 500),
+        ('comments', 5000),
     )
     display_attrs = ('rir', 'role', 'tenant', 'description')