backend #2

Merged
s460930 merged 5 commits from backend into develop 2020-12-05 19:08:57 +01:00
Showing only changes of commit 516365cbc6 - Show all commits

View File

@ -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')
]