mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
11 lines
226 B
Python
11 lines
226 B
Python
from extras.registry import registry
|
|
|
|
|
|
def nav_menu_links(request):
|
|
"""
|
|
Retrieve and expose all plugin registered nav links
|
|
"""
|
|
return {
|
|
'plugin_nav_menu_links': registry['plugin_nav_menu_links']
|
|
}
|