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
|
|
|
...
|
2020-09-08 17:32:27 +03:00
|
|
|
path('auth/', include('rest_framework.urls'))
|
2015-06-11 01:45:23 +03:00
|
|
|
]
|
2014-08-19 16:28:07 +04:00
|
|
|
|
2017-11-20 11:35:54 +03:00
|
|
|
You should make sure your authentication settings include `SessionAuthentication`.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2017-11-06 17:06:47 +03:00
|
|
|
from django.contrib.auth import views
|
2020-08-25 14:50:02 +03:00
|
|
|
from django.urls import path
|
2017-11-06 17:06:47 +03:00
|
|
|
|
2015-12-08 03:20:48 +03:00
|
|
|
app_name = 'rest_framework'
|
2015-06-11 01:45:23 +03:00
|
|
|
urlpatterns = [
|
2020-08-25 14:50:02 +03:00
|
|
|
path('login/', views.LoginView.as_view(template_name='rest_framework/login.html'), name='login'),
|
|
|
|
path('logout/', views.LogoutView.as_view(), name='logout'),
|
2015-06-11 01:45:23 +03:00
|
|
|
]
|