1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

#10560: Add new fields to indexers

This commit is contained in:
jeremystretch
2022-11-15 10:37:35 -05:00
parent 94dd07e1e6
commit ecf5304a14
6 changed files with 53 additions and 3 deletions

View File

@ -9,6 +9,7 @@ class WirelessLANIndex(SearchIndex):
('ssid', 100),
('description', 500),
('auth_psk', 2000),
('comments', 5000),
)
@ -29,4 +30,5 @@ class WirelessLinkIndex(SearchIndex):
('ssid', 100),
('description', 500),
('auth_psk', 2000),
('comments', 5000),
)