linked shorturls into project

pull/1/head
Calum Andrew Morrell 2025-11-06 12:17:35 +00:00
parent 6da57fbe06
commit 4cd9c50fec
2 changed files with 2 additions and 0 deletions

View File

@ -45,6 +45,7 @@ INSTALLED_APPS = [
"django.contrib.staticfiles",
"core.apps.CoreConfig",
"dashboard.apps.DashboardConfig",
"shorturls.apps.ShorturlsConfig",
]
MIDDLEWARE = [

View File

@ -23,4 +23,5 @@ urlpatterns = [
path("", include("core.urls", namespace="core")),
path("accounts/", include("accounts.urls")),
path("dashboard/", include("dashboard.urls", namespace="dashboard")),
path("", include("shorturls.urls", namespace="shorturls")),
]