11 lines
261 B
Python
11 lines
261 B
Python
|
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),
|
||
|
)
|