diff options
| author | Michael Elovskikh | 2013-01-17 17:17:53 +0600 | 
|---|---|---|
| committer | Michael Elovskikh | 2013-01-17 17:17:53 +0600 | 
| commit | ed1375485906f261449b92fe6e20715530625d07 (patch) | |
| tree | 33532af335993279285ebe1abf8bf3a4b2eb6ba4 /docs/api-guide/authentication.md | |
| parent | 0f0a07b732a4bd90957c08b01d51e70c7e739d5d (diff) | |
| download | django-rest-framework-ed1375485906f261449b92fe6e20715530625d07.tar.bz2 | |
Added PATCH HTTP method to the docs
Diffstat (limited to 'docs/api-guide/authentication.md')
| -rw-r--r-- | docs/api-guide/authentication.md | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md index afd9a261..2d34d788 100644 --- a/docs/api-guide/authentication.md +++ b/docs/api-guide/authentication.md @@ -134,7 +134,7 @@ If successfully authenticated, `SessionAuthentication` provides the following cr  * `request.user` will be a Django `User` instance.  * `request.auth` will be `None`. -If you're using an AJAX style API with SessionAuthentication, you'll need to make sure you include a valid CSRF token for any "unsafe" HTTP method calls, such as `PUT`, `POST` or `DELETE` requests.  See the [Django CSRF documentation][csrf-ajax] for more details. +If you're using an AJAX style API with SessionAuthentication, you'll need to make sure you include a valid CSRF token for any "unsafe" HTTP method calls, such as `PUT`, `PATCH`, `POST` or `DELETE` requests.  See the [Django CSRF documentation][csrf-ajax] for more details.  # Custom authentication | 
