This commit is contained in:
= 2025-01-12 11:17:24 -05:00
parent a1221b5e74
commit b12ddfdf92

View File

@ -9,7 +9,7 @@ router.register(r'projects', ProjectViewSet)
router.register(r'tasks', TaskViewSet)
urlpatterns = [
path('api/accounts/', include('accounts.urls'))
path('api/accounts/', include('accounts.urls')),
path('api/', include(router.urls)),
path('projects/create/', create_project, name='create_project'),
path('projects/<int:project_id>/', project_dashboard, name='project_dashboard'),