1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pyinventory_ynh.git synced 2024-09-03 20:16:09 +02:00
pyinventory_ynh/conf/ynh_urls.py

13 lines
386 B
Python
Raw Normal View History

2020-12-09 13:31:25 +01:00
from django.conf import settings
from django.conf.urls import include
from django.urls import path
2020-12-09 13:31:25 +01:00
# settings.PATH_URL is the $YNH_APP_ARG_PATH
if settings.PATH_URL:
urlpatterns = [
path(f'{settings.PATH_URL}/', include('inventory_project.urls'))
]
else:
# Installed to domain root, without a path prefix?
from inventory_project.urls import urlpatterns # noqa