Changeset 4572
- Timestamp:
- 02/25/07 10:11:46 (2 years ago)
- Files:
-
- django/trunk/docs/authentication.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/authentication.txt
r4420 r4572 814 814 815 815 class MyBackend: 816 def authenticate( username=None, password=None):816 def authenticate(self, username=None, password=None): 817 817 # Check the username/password and return a User. 818 818 … … 820 820 821 821 class MyBackend: 822 def authenticate( token=None):822 def authenticate(self, token=None): 823 823 # Check the token and return a User. 824 824
