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

11 lines
234 B
Python
Raw Normal View History

from extras.registry import registry
2020-03-17 02:35:12 -04:00
2020-03-26 12:25:36 -04:00
def plugin_menu_items(request):
2020-03-17 02:35:12 -04:00
"""
2020-03-26 12:25:36 -04:00
Retrieve and expose all plugin registered navigation menu items.
2020-03-17 02:35:12 -04:00
"""
return {
2020-03-26 12:25:36 -04:00
'plugin_menu_items': registry['plugin_menu_items']
2020-03-17 02:35:12 -04:00
}