From 3af776f87c8721867ce720b5a4a4fb7091e730fd Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Mon, 15 Aug 2022 08:26:37 +0200 Subject: [PATCH 1/2] shorten description --- manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifest.json b/manifest.json index 5d1b7cd..ff7fa94 100644 --- a/manifest.json +++ b/manifest.json @@ -3,7 +3,7 @@ "id": "django_example_ynh", "packaging_format": 1, "description": { - "en": "Demo YunoHost Application to demonstrate the integration of a Django project under YunoHost via https://github.com/YunoHost-Apps/django_yunohost_integration" + "en": "App to demonstrate the integration of a Django project under YunoHost via https://github.com/YunoHost-Apps/django_yunohost_integration" }, "version": "0.3.0~ynh1", "url": "https://github.com/YunoHost-Apps/django_example_ynh", From 0eac7fc72f94c57b5843b1a460109c7565900a1d Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Mon, 15 Aug 2022 08:26:42 +0200 Subject: [PATCH 2/2] fix urls --- conf/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/conf/urls.py b/conf/urls.py index cfd7ae6..9fc213c 100644 --- a/conf/urls.py +++ b/conf/urls.py @@ -31,6 +31,6 @@ if settings.PATH_URL: else: # Installed to domain root, without a path prefix urlpatterns = [ - path('/debug/', request_media_debug_view), - path('/', admin.site.urls), + path('debug/', request_media_debug_view), + path('', admin.site.urls), ]