diff --git a/rest-app/smartpicasso/app/user/urls.py b/rest-app/smartpicasso/app/user/urls.py index f12a788..390985a 100644 --- a/rest-app/smartpicasso/app/user/urls.py +++ b/rest-app/smartpicasso/app/user/urls.py @@ -4,8 +4,9 @@ from django.conf.urls import url -from smartpicasso.app.user.views import UserLoginView +from smartpicasso.app.user.views import UserLoginView, UserRegistrationView urlpatterns = [ - url(r'^authenticate', UserLoginView.as_view(), name='authenticate') + url(r'^authenticate', UserLoginView.as_view(), name='authenticate'), + url(r'^register', UserRegistrationView.as_view(), name='register') ]