diff options
| author | Tom Christie | 2012-09-04 12:02:05 +0100 |
|---|---|---|
| committer | Tom Christie | 2012-09-04 12:02:05 +0100 |
| commit | 8457c871963264c9f62552f30307e98221a1c25d (patch) | |
| tree | 2048cbfc334aa5fca0d5c8d88fd20e50de667e41 /djangorestframework/authentication.py | |
| parent | 29dfbabaf54d75801b404e253a2d7574fa415564 (diff) | |
| download | django-rest-framework-8457c871963264c9f62552f30307e98221a1c25d.tar.bz2 | |
Bits of cleanup
Diffstat (limited to 'djangorestframework/authentication.py')
| -rw-r--r-- | djangorestframework/authentication.py | 4 |
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. """ |
