2020-12-01 18:18:44 +01:00
|
|
|
"""
|
|
|
|
@author: p.dolata
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.conf.urls import url
|
|
|
|
|
2020-12-01 22:51:14 +01:00
|
|
|
from smartpicasso.app.user.views import UserLoginView, UserRegistrationView
|
2020-12-01 18:18:44 +01:00
|
|
|
|
|
|
|
urlpatterns = [
|
2020-12-01 22:51:14 +01:00
|
|
|
url(r'^authenticate', UserLoginView.as_view(), name='authenticate'),
|
|
|
|
url(r'^register', UserRegistrationView.as_view(), name='register')
|
2020-12-01 18:18:44 +01:00
|
|
|
]
|