* Added some individual options * Added general options * Added show_single_cable_logical_conns and draw_default_layout * Added ignore_cable_type to IndividualOptions * Corrected permission, tiny improvements * Add preselected_device_roles to IndividualOptions * Add preselected_tags * Updated documentation * Update README.md * Corrected queryset for preselected_tags * Update README.md * move supported_termination_types to inside the function to prevent migration issues * removed general options * added new migration script --------- Co-authored-by: Mattijs Vanhaverbeke <mattijs.vanhaverbeke@ebo-enterprises.com>
22 lines
583 B
Python
22 lines
583 B
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.1"
|
|
author = "Mattijs Vanhaverbeke"
|
|
author_email = "author@example.com"
|
|
base_url = "netbox_topology_views"
|
|
required_settings = []
|
|
default_settings = {
|
|
"static_image_directory": "netbox_topology_views/img",
|
|
"allow_coordinates_saving": False,
|
|
"always_save_coordinates": False,
|
|
|
|
}
|
|
|
|
|
|
config = TopologyViewsConfig
|