linked shorturls into project
parent
6da57fbe06
commit
4cd9c50fec
|
|
@ -45,6 +45,7 @@ INSTALLED_APPS = [
|
|||
"django.contrib.staticfiles",
|
||||
"core.apps.CoreConfig",
|
||||
"dashboard.apps.DashboardConfig",
|
||||
"shorturls.apps.ShorturlsConfig",
|
||||
]
|
||||
|
||||
MIDDLEWARE = [
|
||||
|
|
|
|||
|
|
@ -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")),
|
||||
]
|
||||
|
|
|
|||
Loading…
Reference in New Issue