netbox-cisco-ise 0.1.2__tar.gz → 0.1.3__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (18) hide show
  1. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/PKG-INFO +1 -1
  2. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise/__init__.py +1 -1
  3. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise/views.py +1 -3
  4. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise.egg-info/PKG-INFO +1 -1
  5. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/pyproject.toml +1 -1
  6. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/LICENSE +0 -0
  7. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/README.md +0 -0
  8. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise/ise_client.py +0 -0
  9. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise/navigation.py +0 -0
  10. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise/templates/netbox_cisco_ise/endpoint_tab.html +0 -0
  11. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise/templates/netbox_cisco_ise/nad_tab.html +0 -0
  12. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise/templates/netbox_cisco_ise/settings.html +0 -0
  13. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise/urls.py +0 -0
  14. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise.egg-info/SOURCES.txt +0 -0
  15. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise.egg-info/dependency_links.txt +0 -0
  16. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise.egg-info/requires.txt +0 -0
  17. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/netbox_cisco_ise.egg-info/top_level.txt +0 -0
  18. {netbox_cisco_ise-0.1.2 → netbox_cisco_ise-0.1.3}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: netbox-cisco-ise
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: NetBox plugin for Cisco ISE integration - endpoint tracking, NAD management, and session visibility
5
5
  Author-email: sieteunoseis <jeremy.worden@gmail.com>
6
6
  License: Apache-2.0
@@ -7,7 +7,7 @@ Shows endpoint identity, profiling data, active session status, and network acce
7
7
 
8
8
  from netbox.plugins import PluginConfig
9
9
 
10
- __version__ = "0.1.2"
10
+ __version__ = "0.1.3"
11
11
 
12
12
 
13
13
  class CiscoISEConfig(PluginConfig):
@@ -134,9 +134,7 @@ class DeviceISEView(generic.ObjectView):
134
134
 
135
135
  def get(self, request, pk):
136
136
  """Handle GET request for the ISE tab."""
137
- device = Device.objects.select_related(
138
- 'device_type__manufacturer'
139
- ).prefetch_related('interfaces').get(pk=pk)
137
+ device = Device.objects.select_related("device_type__manufacturer").prefetch_related("interfaces").get(pk=pk)
140
138
 
141
139
  client = get_client()
142
140
  config = settings.PLUGINS_CONFIG.get("netbox_cisco_ise", {})
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: netbox-cisco-ise
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: NetBox plugin for Cisco ISE integration - endpoint tracking, NAD management, and session visibility
5
5
  Author-email: sieteunoseis <jeremy.worden@gmail.com>
6
6
  License: Apache-2.0
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "netbox-cisco-ise"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "NetBox plugin for Cisco ISE integration - endpoint tracking, NAD management, and session visibility"
9
9
  readme = "README.md"
10
10
  license = {text = "Apache-2.0"}