From 3b93dd8466cac50573df8b96d34b9b000dedf4d6 Mon Sep 17 00:00:00 2001 From: = Date: Sat, 11 Jan 2025 21:49:26 -0500 Subject: [PATCH] ok --- main/urls.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/urls.py b/main/urls.py index 4c18a4a..3ad739d 100644 --- a/main/urls.py +++ b/main/urls.py @@ -10,9 +10,9 @@ router.register(r'tasks', TaskViewSet) urlpatterns = [ path('api/', include(router.urls)), - path('accounts/login/', UserLoginView.as_view(), name='login'), - path('accounts/logout/', UserLogoutView.as_view(), name='logout'), - path('accounts/register/', UserRegistrationView.as_view(), name='welcome'), + path('login/', UserLoginView.as_view(), name='login'), + path('logout/', UserLogoutView.as_view(), name='logout'), + path('register/', UserRegistrationView.as_view(), name='welcome'), path('projects/create/', create_project, name='create_project'), path('projects//', project_dashboard, name='project_dashboard'), path('projects//tasks/create/', create_task, name='create_task'),