12 lines
206 B
Python
12 lines
206 B
Python
"""
|
|
@author: p.dolata
|
|
"""
|
|
|
|
from django.conf.urls import url
|
|
|
|
from smartpicasso.app.user.views import UserLoginView
|
|
|
|
urlpatterns = [
|
|
url(r'^authenticate', UserLoginView.as_view(), name='authenticate')
|
|
]
|