diff options
author | Russell Keith-Magee <russell@keith-magee.com> | 2010-01-13 11:07:16 +0000 |
---|---|---|
committer | Russell Keith-Magee <russell@keith-magee.com> | 2010-01-13 11:07:16 +0000 |
commit | 6afd505b5be528bc5728bc9b9acd48276be457b4 (patch) | |
tree | 3b30c5772405413fab9c4d8b1aa689cfab4b0fbf /docs/topics/signals.txt | |
parent | f56f6e94054dcafbdfc555460e3119b1ad018352 (diff) | |
download | django-6afd505b5be528bc5728bc9b9acd48276be457b4.tar.gz |
Fixed #5390 -- Added signals for m2m operations. Thanks to the many people (including, most recently, rvdrijst and frans) that have contributed to this patch.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12223 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/topics/signals.txt')
-rw-r--r-- | docs/topics/signals.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/topics/signals.txt b/docs/topics/signals.txt index 6f66b036c7..e3f5b90d89 100644 --- a/docs/topics/signals.txt +++ b/docs/topics/signals.txt @@ -29,6 +29,9 @@ notifications: Sent before or after a model's :meth:`~django.db.models.Model.delete` method is called. + * :data:`django.db.models.signals.m2m_changed` + + Sent when a :class:`ManyToManyField` on a model is changed. * :data:`django.core.signals.request_started` & :data:`django.core.signals.request_finished` |