diff options
| author | Tom Christie | 2013-01-28 03:41:15 -0800 |
|---|---|---|
| committer | Tom Christie | 2013-01-28 03:41:15 -0800 |
| commit | 8a5442665657647f389062ed7ee78465eebed758 (patch) | |
| tree | 34f575fb078377208ded5251aea050668355d82a /docs/api-guide/views.md | |
| parent | 3bcd38b7d0ddaa2c051ad230cb0d749f9737fd82 (diff) | |
| parent | 499d6424aee5b71b8e6b2500bf14fa85321bfc26 (diff) | |
| download | django-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/views.md')
| -rw-r--r-- | docs/api-guide/views.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/api-guide/views.md b/docs/api-guide/views.md index d1e42ec1..574020f9 100644 --- a/docs/api-guide/views.md +++ b/docs/api-guide/views.md @@ -85,7 +85,7 @@ The following methods are called before dispatching to the handler method. ## Dispatch methods The following methods are called directly by the view's `.dispatch()` method. -These perform any actions that need to occur before or after calling the handler methods such as `.get()`, `.post()`, `put()` and `.delete()`. +These perform any actions that need to occur before or after calling the handler methods such as `.get()`, `.post()`, `put()`, `patch()` and `.delete()`. ### .initial(self, request, \*args, **kwargs) |
