diff --git a/docs/using_netbox_dns.md b/docs/using_netbox_dns.md index cd365783..788f42bc 100644 --- a/docs/using_netbox_dns.md +++ b/docs/using_netbox_dns.md @@ -983,7 +983,7 @@ For this use case, it is possible to define filters per DNS view that provide ad { "dns_name__startswith": "external" } -``` +``` As a more practical example, the user can create a boolean custom field named `external`, and define the following IP address filter for the external view: @@ -1071,13 +1071,13 @@ After these steps have been completed, creating, deleting or updating IP address There are limited options to customize the appearance and functionality of the NetBox DNS plugin. ### Name of the Main Menu Item -The default name of the submenu NetBox DNS uses in the NetBox sidebar is 'NetBox DNS'. Using the configuration variable `menu_name` in the plugin configuration this can be changed to a different value, e.g. 'DNS': +The default name of the submenu NetBox DNS uses in the NetBox sidebar is 'DNS'. Using the configuration variable `menu_name` in the plugin configuration this can be changed to a different value, e.g. 'NetBox DNS': ``` PLUGINS_CONFIG = { 'netbox_dns': { ... - menu_name: "DNS", + menu_name: "NetBox DNS", ... }, } diff --git a/netbox_dns/__init__.py b/netbox_dns/__init__.py index 5b571f76..1e07bf39 100644 --- a/netbox_dns/__init__.py +++ b/netbox_dns/__init__.py @@ -53,7 +53,7 @@ class DNSConfig(PluginConfig): "enable_root_zones": False, "enforce_unique_records": True, "enforce_unique_rrset_ttl": True, - "menu_name": "NetBox DNS", + "menu_name": "DNS", "top_level_menu": True, } base_url = "netbox-dns"