aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/authentication.py
diff options
context:
space:
mode:
Diffstat (limited to 'djangorestframework/authentication.py')
-rw-r--r--djangorestframework/authentication.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/djangorestframework/authentication.py b/djangorestframework/authentication.py
index 3ddd9e45..197aa424 100644
--- a/djangorestframework/authentication.py
+++ b/djangorestframework/authentication.py
@@ -11,7 +11,7 @@ import base64
__all__ = (
'BaseAuthentication',
'BasicAuthentication',
- 'UserLoggedInAuthentication'
+ 'SessionAuthentication'
)
@@ -68,7 +68,7 @@ class BasicAuthentication(BaseAuthentication):
return None
-class UserLoggedInAuthentication(BaseAuthentication):
+class SessionAuthentication(BaseAuthentication):
"""
Use Django's session framework for authentication.
"""