summaryrefslogtreecommitdiff
path: root/docs/topics/signals.txt
diff options
context:
space:
mode:
authorRussell Keith-Magee <russell@keith-magee.com>2010-01-13 11:07:16 +0000
committerRussell Keith-Magee <russell@keith-magee.com>2010-01-13 11:07:16 +0000
commit6afd505b5be528bc5728bc9b9acd48276be457b4 (patch)
tree3b30c5772405413fab9c4d8b1aa689cfab4b0fbf /docs/topics/signals.txt
parentf56f6e94054dcafbdfc555460e3119b1ad018352 (diff)
downloaddjango-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.txt3
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`