1
0

Upload files to "dnac_integration"

This commit is contained in:
2024-02-15 17:48:37 +00:00
parent 95bed3a0c0
commit 0b1fe631fc
5 changed files with 88 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
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),
)