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

Fixes #1605: Added clusters and virtual machines to object list for global search

This commit is contained in:
Jeremy Stretch
2017-10-16 16:44:15 -04:00
parent 34259d5d9d
commit 047f22e110

View File

@ -30,6 +30,10 @@ OBJ_TYPE_CHOICES = (
('Tenancy', (
('tenant', 'Tenants'),
)),
('Virtualization', (
('cluster', 'Clusters'),
('virtualmachine', 'Virtual machines'),
)),
)