mirror of
https://github.com/YunoHost-Apps/django_example_ynh.git
synced 2024-09-03 18:26:21 +02:00
12 lines
385 B
Python
12 lines
385 B
Python
from django.conf import settings
|
|
from django.contrib import admin
|
|
from django.urls import path
|
|
from django_yunohost_integration.views import request_media_debug_view
|
|
|
|
|
|
# settings.PATH_URL is the $YNH_APP_ARG_PATH
|
|
# Prefix all urls with "PATH_URL":
|
|
urlpatterns = [
|
|
path(f'{settings.PATH_URL}/', admin.site.urls),
|
|
path(f'{settings.PATH_URL}/debug/', request_media_debug_view),
|
|
]
|