Refs #25232 -- Documented AllowAll*Backend in "new features" section of 1.10 release notes.

This commit is contained in:
Markus Holtermann 2016-07-25 09:09:54 -04:00 committed by Tim Graham
parent 9a5a789da2
commit e69091b34a
1 changed files with 7 additions and 0 deletions

View File

@ -131,6 +131,13 @@ Minor features
:func:`~django.contrib.auth.views.login` view allows redirecting
authenticated users visiting the login page.
* The new :class:`~django.contrib.auth.backends.AllowAllUsersModelBackend` and
:class:`~django.contrib.auth.backends.AllowAllUsersRemoteUserBackend` ignore
the value of ``User.is_active``, while
:class:`~django.contrib.auth.backends.ModelBackend` and
:class:`~django.contrib.auth.backends.RemoteUserBackend` now reject inactive
users.
:mod:`django.contrib.gis`
~~~~~~~~~~~~~~~~~~~~~~~~~