mirror of
https://github.com/lucaspalomodevelop/netbox-acls.git
synced 2026-03-13 07:29:40 +00:00
26 lines
471 B
Python
26 lines
471 B
Python
"""
|
|
Define the NetBox Plugin
|
|
"""
|
|
|
|
from extras.plugins import PluginConfig
|
|
|
|
from .version import __version__
|
|
|
|
|
|
class NetBoxACLsConfig(PluginConfig):
|
|
"""
|
|
Plugin specifc configuration
|
|
"""
|
|
|
|
name = "netbox_acls"
|
|
verbose_name = "Access Lists"
|
|
version = __version__
|
|
description = "Manage simple ACLs in NetBox"
|
|
base_url = "access-lists"
|
|
min_version = "3.3.0"
|
|
max_version = "3.3.99"
|
|
# default_settings = {}
|
|
|
|
|
|
config = NetBoxACLsConfig
|