You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-11Lines changed: 6 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -59,28 +59,23 @@ or by adding to your `local_requirements.txt` or `plugin_requirements.txt` (netb
59
59
netbox-acls
60
60
```
61
61
62
+
## Configuration
63
+
62
64
Enable the plugin in `/opt/netbox/netbox/netbox/configuration.py`,
63
65
or if you use netbox-docker, your `/configuration/plugins.py` file :
64
66
65
67
```python
66
68
PLUGINS= [
67
-
'netbox_acls'
69
+
"netbox_acls"
68
70
]
69
71
70
72
PLUGINS_CONFIG= {
71
-
"netbox_acls": {},
73
+
"netbox_acls": {
74
+
"top_level_menu": True# If set to True the plugin will add a top level menu item for the plugin. If set to False the plugin will add a menu item under the Plugins menu item. Default is set to True.
75
+
},
72
76
}
73
77
```
74
78
75
-
## Configuration
76
-
77
-
The following options are available in the configuration file:
78
-
79
-
-`top_level_menu`
80
-
--__Type__: `Boolean`
81
-
--__Default__: `True`
82
-
-__Description__: If set to `True` the plugin will add a top level menu item for the plugin. If set to `False` the plugin will add a menu item under the `Plugins` menu item.
0 commit comments