2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2012-11-14 22:36:29 +04:00
|
|
|
Login and logout views for the browsable API.
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2012-11-14 22:36:29 +04:00
|
|
|
Add these to your root URLconf if you're using the browsable API and
|
2014-08-07 22:02:48 +04:00
|
|
|
your API requires authentication:
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2015-06-11 01:45:23 +03:00
|
|
|
urlpatterns = [
|
2012-09-20 16:06:27 +04:00
|
|
|
...
|
2014-09-01 12:07:05 +04:00
|
|
|
url(r'^auth/', include('rest_framework.urls', namespace='rest_framework'))
|
2015-06-11 01:45:23 +03:00
|
|
|
]
|
2014-08-19 16:28:07 +04:00
|
|
|
|
2014-08-07 22:02:48 +04:00
|
|
|
The urls must be namespaced as 'rest_framework', and you should make sure
|
|
|
|
your authentication settings include `SessionAuthentication`.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2013-02-05 00:55:35 +04:00
|
|
|
from __future__ import unicode_literals
|
2015-06-18 16:38:29 +03:00
|
|
|
|
2015-06-11 01:45:23 +03:00
|
|
|
from django.conf.urls import url
|
2014-08-19 16:28:07 +04:00
|
|
|
from django.contrib.auth import views
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
template_name = {'template_name': 'rest_framework/login.html'}
|
|
|
|
|
2015-06-11 01:45:23 +03:00
|
|
|
urlpatterns = [
|
2014-08-19 16:28:07 +04:00
|
|
|
url(r'^login/$', views.login, template_name, name='login'),
|
2015-06-11 01:45:23 +03:00
|
|
|
url(r'^logout/$', views.logout, template_name, name='logout'),
|
|
|
|
]
|