diff options
| author | mgaligniana <marcelogaligniana@gmail.com> | 2021-12-27 23:32:07 -0300 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-01-11 08:06:18 +0100 |
| commit | fa235004dd1423b129befe847bbf207808ca07ad (patch) | |
| tree | ef9f65f34fbd031007dc2986916ac3927a645698 /docs/ref | |
| parent | f1905db6c0004a2b6c8b69c55a1f5f9da58ce2eb (diff) | |
Fixed #13251 -- Made pre/post_delete signals dispatch the origin.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/signals.txt | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/ref/signals.txt b/docs/ref/signals.txt index 4eb55c906a..6f0ce0527c 100644 --- a/docs/ref/signals.txt +++ b/docs/ref/signals.txt @@ -195,6 +195,12 @@ Arguments sent with this signal: ``using`` The database alias being used. +``origin`` + .. versionadded:: 4.1 + + The origin of the deletion being the instance of a ``Model`` or + ``QuerySet`` class. + ``post_delete`` --------------- @@ -219,6 +225,12 @@ Arguments sent with this signal: ``using`` The database alias being used. +``origin`` + .. versionadded:: 4.1 + + The origin of the deletion being the instance of a ``Model`` or + ``QuerySet`` class. + ``m2m_changed`` --------------- |
