1
0
Fork 0
Netbox-DNAC-Integration/dnac_integration/search.py

11 lines
261 B
Python
Raw Normal View History

2024-02-15 17:48:37 +00:00
from netbox.search import SearchIndex, register_search
from . import models
@register_search
class dnacServerIndex(SearchIndex):
model = models.dnacServer
fields = (
('hostname', 100),
('username', 500),
('version', 1000),
)