10b3bb6497
* geis does not work with channels2 and never will be (it has to be python now) * pytest * rewrote cache system * use username instead of pk for admin user in tests
24 lines
456 B
Python
24 lines
456 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
# Auth
|
|
url(r'^login/$',
|
|
views.UserLoginView.as_view(),
|
|
name='user_login'),
|
|
|
|
url(r'^logout/$',
|
|
views.UserLogoutView.as_view(),
|
|
name='user_logout'),
|
|
|
|
url(r'^whoami/$',
|
|
views.WhoAmIView.as_view(),
|
|
name='user_whoami'),
|
|
|
|
url(r'^setpassword/$',
|
|
views.SetPasswordView.as_view(),
|
|
name='user_setpassword'),
|
|
]
|