mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
19 lines
462 B
Python
19 lines
462 B
Python
"""
|
|
URL lookup for plugin app
|
|
"""
|
|
from django.conf.urls import url, include
|
|
|
|
from plugin import plugin_reg
|
|
|
|
|
|
PLUGIN_BASE = 'plugin' # Constant for links
|
|
|
|
|
|
def get_plugin_urls():
|
|
"""returns a urlpattern that can be integrated into the global urls"""
|
|
urls = []
|
|
for plugin in plugin_reg.plugins.values():
|
|
if plugin.mixin_enabled('urls'):
|
|
urls.append(plugin.urlpatterns)
|
|
return url(f'^{PLUGIN_BASE}/', include((urls, 'plugin')))
|