17537 add name field to ASN Range Search

This commit is contained in:
Arthur Hanson 2024-09-23 09:09:20 -07:00 committed by Jeremy Stretch
parent 116a423d8f
commit 88abb6902d

View File

@ -29,6 +29,7 @@ class ASNIndex(SearchIndex):
class ASNRangeIndex(SearchIndex): class ASNRangeIndex(SearchIndex):
model = models.ASNRange model = models.ASNRange
fields = ( fields = (
('name', 100),
('description', 500), ('description', 500),
) )
display_attrs = ('rir', 'tenant', 'description') display_attrs = ('rir', 'tenant', 'description')