develop #4

Merged
s460930 merged 29 commits from develop into master 2020-12-07 15:22:26 +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')
]