diff --git a/dhub/urls.py b/dhub/urls.py index 65ac492..dcf7c2a 100644 --- a/dhub/urls.py +++ b/dhub/urls.py @@ -15,10 +15,10 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ -# from django.contrib import admin from django.urls import path, include urlpatterns = [ - # path("admin/", admin.site.urls), - path('api/', include('snapshot.urls')), + # path('api/', include('snapshot.urls')), + path("", include("login.urls")), + path("dashboard/", include("dashboard.urls")), ]