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

Bugfix serving user media files

This commit is contained in:
JensDiemer 2020-12-09 19:58:42 +01:00
parent b6eb5690ae
commit c3f7694ad0

View file

@ -5,6 +5,10 @@ from django.urls import path
# settings.PATH_URL is the $YNH_APP_ARG_PATH # settings.PATH_URL is the $YNH_APP_ARG_PATH
if settings.PATH_URL: if settings.PATH_URL:
urlpatterns = [ urlpatterns = [
# XXX: Hack - the MEDIA_URL contains the "PATH_URL" already:
path(settings.MEDIA_URL.lstrip('/'), include('django_tools.serve_media_app.urls')),
# Prefix all urls with "PATH_URL":
path(f'{settings.PATH_URL}/', include('inventory_project.urls')) path(f'{settings.PATH_URL}/', include('inventory_project.urls'))
] ]
else: else: