From 351cc6e4049292f8e97d383e21ec1d7060d57254 Mon Sep 17 00:00:00 2001 From: corbz Date: Mon, 11 Mar 2024 00:43:25 +0000 Subject: [PATCH] fix app names --- core/urls.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/urls.py b/core/urls.py index 30f7962..2c95470 100644 --- a/core/urls.py +++ b/core/urls.py @@ -11,6 +11,6 @@ urlpatterns = [ path("health/", include(("apps.health.urls", "apps.health"), namespace="health")), *static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT), - path("", include("apps.authentication.urls", namespace="auth")), - path("", include("apps.home.urls", namespace="home")) + path("", include(("apps.authentication.urls", "apps.authentication"), namespace="auth")), + path("", include(("apps.home.urls", "apps.home"), namespace="home")) ]