diff options
| author | Tom Christie | 2014-11-26 09:06:15 +0000 | 
|---|---|---|
| committer | Tom Christie | 2014-11-26 09:06:15 +0000 | 
| commit | 0f5338ada90ca2c6e53b9e095bec6a3b853d107b (patch) | |
| tree | 6cf60970b6a52774e8309dc72594ac115fc24b91 /docs/api-guide/generic-views.md | |
| parent | c01c631ef2c5a0f303460c505810c4987371dbcc (diff) | |
| download | django-rest-framework-0f5338ada90ca2c6e53b9e095bec6a3b853d107b.tar.bz2 | |
Call out removal of pre_save/post_save more strongly
Diffstat (limited to 'docs/api-guide/generic-views.md')
| -rwxr-xr-x | docs/api-guide/generic-views.md | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/docs/api-guide/generic-views.md b/docs/api-guide/generic-views.md index dc51189c..8c1b7dc9 100755 --- a/docs/api-guide/generic-views.md +++ b/docs/api-guide/generic-views.md @@ -190,6 +190,8 @@ These override points are also particularly useful for adding behavior that occu          instance = serializer.save()          send_email_confirmation(user=self.request.user, modified=instance) +**Note**: These methods replace the old-style version 2.x `pre_save`, `post_save`, `pre_delete` and `post_delete` methods, which are no longer available. +  **Other methods**:  You won't typically need to override the following methods, although you might need to call into them if you're writing custom views using `GenericAPIView`. | 
