summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorJannis Leidel <jannis@leidel.info>2010-12-21 19:18:12 +0000
committerJannis Leidel <jannis@leidel.info>2010-12-21 19:18:12 +0000
commit745c255a19df498d328b908fc3df326cdf0cf638 (patch)
treed6da7081dbb552d98a0f05c98baeba9348531a67 /docs/internals
parent5830477e467482edcdee7e9e65feed8c98dd0bc2 (diff)
Fixed #14249 -- Added support for inactive users to the auth backend system. Thanks, Harro van der Klauw.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15010 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index 4cd4807188..54f40d027a 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -98,6 +98,9 @@ their deprecation, as per the :ref:`Django deprecation policy
* The ``no`` language code has been deprecated in favor of the ``nb``
language code.
+ * Authentication backends need to define the boolean attribute
+ ``supports_inactive_user``.
+
* 1.5
* The ``mod_python`` request handler has been deprecated since the 1.3
release. The ``mod_wsgi`` handler should be used instead.
@@ -139,6 +142,11 @@ their deprecation, as per the :ref:`Django deprecation policy
* The :djadmin:`reset` and :djadmin:`sqlreset` management commands
are deprecated.
+ * Authentication backends need to support a inactive user
+ being passed to all methods dealing with permissions.
+ The ``supports_inactive_user`` variable is not checked any
+ longer and can be removed.
+
* 2.0
* ``django.views.defaults.shortcut()``. This function has been moved
to ``django.contrib.contenttypes.views.shortcut()`` as part of the