diff --git a/backend/api/urls.py b/backend/api/urls.py index f25e4371..36f730d5 100644 --- a/backend/api/urls.py +++ b/backend/api/urls.py @@ -1,9 +1,10 @@ from django.urls import path from api.views import hello_world -from users.views import CreateUserView +from users.views import CreateUserView, LoginView urlpatterns = [ path("hello_word", hello_world), path("create-user/", CreateUserView.as_view(), name="create-user"), + path("login/", LoginView, name="login"), ]