diff options
| author | Tom Christie | 2014-11-03 12:00:19 +0000 | 
|---|---|---|
| committer | Tom Christie | 2014-11-03 12:00:19 +0000 | 
| commit | d27b8cc09b83bac10346effa1021493d2835b794 (patch) | |
| tree | d9e7ff7ee173c1844734f16d0bf6fa2055088076 /docs/topics/3.0-announcement.md | |
| parent | 37845968cd66e6372bbc22fd3ced131dff3b824a (diff) | |
| download | django-rest-framework-d27b8cc09b83bac10346effa1021493d2835b794.tar.bz2 | |
PUT as create docs, and move mixin out to external gist
Diffstat (limited to 'docs/topics/3.0-announcement.md')
| -rw-r--r-- | docs/topics/3.0-announcement.md | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md index f69c0b25..97ffdcf3 100644 --- a/docs/topics/3.0-announcement.md +++ b/docs/topics/3.0-announcement.md @@ -694,7 +694,7 @@ Allowing `PUT` as create operations is problematic, as it necessarily exposes in  Both styles "`PUT` as 404" and "`PUT` as create" can be valid in different circumstances, but we've now opted for the 404 behavior as the default, due to it being simpler and more obvious. -If you need to restore the previous behavior you can include the `AllowPUTAsCreateMixin` class in your view. This class can be imported from `rest_framework.mixins`. +If you need to restore the previous behavior you may want to include [this `AllowPUTAsCreateMixin` class](https://gist.github.com/tomchristie/a2ace4577eff2c603b1b) as a mixin to your views.  #### Customizing error responses.  | 
