Fix ClusterIndex reference to 'site' and add 'scope' to WirelessLANIndex

This commit is contained in:
Brian Tiemann 2025-01-07 10:30:07 -05:00
parent a94f88e5e6
commit 059ea0f9e8
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ class ClusterIndex(SearchIndex):
('description', 500),
('comments', 5000),
)
display_attrs = ('type', 'group', 'status', 'tenant', 'site', 'description')
display_attrs = ('type', 'group', 'status', 'tenant', 'scope', 'description')
@register_search

View File

@ -11,7 +11,7 @@ class WirelessLANIndex(SearchIndex):
('auth_psk', 2000),
('comments', 5000),
)
display_attrs = ('group', 'status', 'vlan', 'tenant', 'description')
display_attrs = ('group', 'status', 'vlan', 'tenant', 'scope', 'description')
@register_search