aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api-guide/authentication.md
diff options
context:
space:
mode:
authorTom Christie2013-01-28 03:41:15 -0800
committerTom Christie2013-01-28 03:41:15 -0800
commit8a5442665657647f389062ed7ee78465eebed758 (patch)
tree34f575fb078377208ded5251aea050668355d82a /docs/api-guide/authentication.md
parent3bcd38b7d0ddaa2c051ad230cb0d749f9737fd82 (diff)
parent499d6424aee5b71b8e6b2500bf14fa85321bfc26 (diff)
downloaddjango-rest-framework-8a5442665657647f389062ed7ee78465eebed758.tar.bz2
Merge pull request #592 from wronglink/docs_patch_method
Added PATCH HTTP method to the docs
Diffstat (limited to 'docs/api-guide/authentication.md')
-rw-r--r--docs/api-guide/authentication.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md
index 1795cfaf..da494746 100644
--- a/docs/api-guide/authentication.md
+++ b/docs/api-guide/authentication.md
@@ -177,7 +177,7 @@ If successfully authenticated, `SessionAuthentication` provides the following cr
Unauthenticated responses that are denied permission will result in an `HTTP 403 Forbidden` response.
-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