1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Reverted "Fixed #26401 -- Added BaseAuthConfig to use auth without migrations."

This reverts commit 1ec1633cb2 as it
doesn't handle ContentType's auth.Permission dependency. Thus, it
doesn't allow auth without migrations.
This commit is contained in:
Jon Dufresne
2016-10-18 17:47:29 -07:00
parent b3bd3aa07c
commit f3ea0c4bbd
5 changed files with 2 additions and 122 deletions

View File

@@ -113,10 +113,6 @@ Minor features
* Added password validators ``help_text`` to
:class:`~django.contrib.auth.forms.UserCreationForm`.
* The new :class:`~django.contrib.auth.apps.BaseAuthConfig` ``AppConfig``
allows using the authentication system :ref:`without any of the built-in
models <using-auth-without-models>`.
* The ``HttpRequest`` is now passed to :func:`~django.contrib.auth.authenticate`
which in turn passes it to the authentication backend if it accepts a
``request`` argument.