summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2015-05-11 09:10:30 -0400
committerTim Graham <timograham@gmail.com>2015-05-11 09:10:47 -0400
commitd92eaebf61fca98426354d377c1b2718a7508f54 (patch)
tree716c241db4a908ebdbf8bc4a6af4e7eaafaad5b0 /docs
parentedeb25708411f04126d46fe918522c847b24f63d (diff)
[1.7.x] Fixed #24780 -- Removed outdated discussion of signals and custom users.
Backport of 8e86d9d3dfd68bebbfd1dd5006e0c25696855269 from master
Diffstat (limited to 'docs')
-rw-r--r--docs/topics/auth/customizing.txt9
1 files changed, 0 insertions, 9 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt
index e5b8a1839e..333e0c9fd1 100644
--- a/docs/topics/auth/customizing.txt
+++ b/docs/topics/auth/customizing.txt
@@ -880,15 +880,6 @@ If your project uses proxy models, you must either modify the proxy to extend
the User model that is currently in use in your project, or merge your proxy's
behavior into your User subclass.
-Custom users and signals
-------------------------
-
-Another limitation of custom User models is that you can't use
-:func:`django.contrib.auth.get_user_model()` as the sender or target of a signal
-handler. Instead, you must register the handler with the resulting User model.
-See :doc:`/topics/signals` for more information on registering and sending
-signals.
-
Custom users and testing/fixtures
---------------------------------