1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

11 lines
226 B
Python
Raw Normal View History

from extras.registry import registry
2020-03-17 02:35:12 -04:00
def nav_menu_links(request):
"""
Retrieve and expose all plugin registered nav links
"""
return {
'plugin_nav_menu_links': registry['plugin_nav_menu_links']
2020-03-17 02:35:12 -04:00
}