37 lines
1.0 KiB
Python
37 lines
1.0 KiB
Python
from extras.plugins import PluginConfig
|
|
|
|
|
|
class TopologyViewsConfig(PluginConfig):
|
|
name = "netbox_topology_views"
|
|
verbose_name = "Topology views"
|
|
description = "An plugin to render topology maps"
|
|
version = "3.2.0"
|
|
author = "Mattijs Vanhaverbeke"
|
|
author_email = "author@example.com"
|
|
base_url = "netbox_topology_views"
|
|
required_settings = []
|
|
default_settings = {
|
|
"preselected_device_roles": [
|
|
"Firewall",
|
|
"Router",
|
|
"Distribution Switch",
|
|
"Core Switch",
|
|
"Internal Switch",
|
|
"Access Switch",
|
|
"Server",
|
|
"Storage",
|
|
"Backup",
|
|
"Wireless AP",
|
|
],
|
|
"ignore_cable_type": [],
|
|
"static_image_directory": "netbox_topology_views/img",
|
|
"allow_coordinates_saving": False,
|
|
"always_save_coordinates": False,
|
|
"preselected_tags": [],
|
|
"draw_default_layout": False,
|
|
"hide_single_cable_logical_conns": False,
|
|
}
|
|
|
|
|
|
config = TopologyViewsConfig
|