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:
parent
b6eb5690ae
commit
c3f7694ad0
1 changed files with 4 additions and 0 deletions
|
@ -5,6 +5,10 @@ from django.urls import path
|
|||
# settings.PATH_URL is the $YNH_APP_ARG_PATH
|
||||
if settings.PATH_URL:
|
||||
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'))
|
||||
]
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue