Skip to content

[Security] Remove enable authenticator manager from 6.0 docs #16794

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions security.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ creates a ``security.yaml`` configuration file for you:

# config/packages/security.yaml
security:
enable_authenticator_manager: true
# https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
password_hashers:
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
Expand Down Expand Up @@ -1354,8 +1353,6 @@ You must enable this using the ``login_throttling`` setting:

# config/packages/security.yaml
security:
# you must use the authenticator manager
enable_authenticator_manager: true

firewalls:
# ...
Expand Down Expand Up @@ -2289,7 +2286,6 @@ the login page):

# config/packages/security.yaml
security:
enable_authenticator_manager: true

# ...
access_control:
Expand Down
3 changes: 1 addition & 2 deletions security/custom_authenticator.rst
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ The authenticator can be enabled using the ``custom_authenticators`` setting:

# config/packages/security.yaml
security:
enable_authenticator_manager: true

# ...
firewalls:
Expand Down Expand Up @@ -179,7 +178,7 @@ can define what happens in these cases:
If your login method is interactive, which means that the user actively
logged into your application, you may want your authenticator to implement the
:class:`Symfony\\Component\\Security\\Http\\Authenticator\\InteractiveAuthenticatorInterface`
so that it dispatches an
so that it dispatches an
:class:`Symfony\\Component\\Security\\Http\\Event\\InteractiveLoginEvent`

.. _security-passport:
Expand Down
1 change: 0 additions & 1 deletion security/entry_point.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ You can configure this using the ``entry_point`` setting:

# config/packages/security.yaml
security:
enable_authenticator_manager: true

# ...
firewalls:
Expand Down
7 changes: 0 additions & 7 deletions security/login_link.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@ This authentication method can help you eliminate most of the customer support
related to authentication (e.g. I forgot my password, how can I change or reset
my password, etc.)

.. note::

Login links are only supported by Symfony when using the
:doc:`authenticator system </security>`. Before using this
authenticator, make sure you have enabled it with
``enable_authenticator_manager: true`` in your ``security.yaml`` file.

Using the Login Link Authenticator
----------------------------------

Expand Down