mirror of
https://github.com/lucaspalomodevelop/netbox-acls.git
synced 2026-03-13 07:29:40 +00:00
25 lines
443 B
Python
25 lines
443 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.5.0"
|
|
max_version = "3.5.99"
|
|
|
|
|
|
config = NetBoxACLsConfig
|