aboutsummaryrefslogtreecommitdiffstats
path: root/djangorestframework/authentication.py
diff options
context:
space:
mode:
authorTom Christie2012-09-04 12:02:05 +0100
committerTom Christie2012-09-04 12:02:05 +0100
commit8457c871963264c9f62552f30307e98221a1c25d (patch)
tree2048cbfc334aa5fca0d5c8d88fd20e50de667e41 /djangorestframework/authentication.py
parent29dfbabaf54d75801b404e253a2d7574fa415564 (diff)
downloaddjango-rest-framework-8457c871963264c9f62552f30307e98221a1c25d.tar.bz2
Bits of cleanup
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.
"""