diff options
| author | Jon Dufresne <jon.dufresne@gmail.com> | 2016-09-10 16:38:05 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-10 16:38:05 -0700 |
| commit | 1ec1633cb294d8ce2a65ece6b56c258483596fba (patch) | |
| tree | 49e7163dad4220da3d99be0a5d981a1a735570a3 /docs/ref | |
| parent | 0368d63a78b07e794138a65216b91eadbb47fc2f (diff) | |
Fixed #26401 -- Added BaseAuthConfig to use auth without migrations.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/contrib/auth.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docs/ref/contrib/auth.txt b/docs/ref/contrib/auth.txt index 91e3fbd1ba..f12b16daa0 100644 --- a/docs/ref/contrib/auth.txt +++ b/docs/ref/contrib/auth.txt @@ -645,3 +645,20 @@ The following backends are available in :mod:`django.contrib.auth.backends`: Same as :class:`RemoteUserBackend` except that it doesn't reject inactive users because :attr:`~RemoteUserBackend.user_can_authenticate` always returns ``True``. + +``AppConfig`` classes +===================== + +.. module:: django.contrib.auth.apps + :synopsis: AppConfigs for contrib.auth. + +.. class:: AuthConfig + + The default :class:`~django.apps.AppConfig`. + +.. class:: BaseAuthConfig + + .. versionadded:: 1.11 + + An :class:`~django.apps.AppConfig` for use if you :ref:`aren't using + <using-auth-without-models>` any of the built-in ``contrib.auth`` models. |
