diff options
| author | Tom Christie | 2011-04-27 18:07:28 +0100 |
|---|---|---|
| committer | Tom Christie | 2011-04-27 18:07:28 +0100 |
| commit | 028851bfa1ee44b8e92808b18d32278d4a473cc8 (patch) | |
| tree | 7a9497fef627d83bbc75dbd21294ff813216c828 /djangorestframework/authenticators.py | |
| parent | 762a52edde09297e87c640797219c9bb8255d50a (diff) | |
| download | django-rest-framework-028851bfa1ee44b8e92808b18d32278d4a473cc8.tar.bz2 | |
Fix up tests and examples after refactoring
Diffstat (limited to 'djangorestframework/authenticators.py')
| -rw-r--r-- | djangorestframework/authenticators.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/djangorestframework/authenticators.py b/djangorestframework/authenticators.py index e6f51dd5..19181b7d 100644 --- a/djangorestframework/authenticators.py +++ b/djangorestframework/authenticators.py @@ -73,4 +73,10 @@ class UserLoggedInAuthenticator(BaseAuthenticator): if resp is None: # csrf passed return request.user return None - + + +#class DigestAuthentication(BaseAuthentication): +# pass +# +#class OAuthAuthentication(BaseAuthentication): +# pass |
