Skip to content

Commit 1c76da8

Browse files
committed
Remove enable_authenticator_manager
1 parent be6a0ca commit 1c76da8

File tree

4 files changed

+1
-14
lines changed

4 files changed

+1
-14
lines changed

security.rst

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ creates a ``security.yaml`` configuration file for you:
2727
2828
# config/packages/security.yaml
2929
security:
30-
enable_authenticator_manager: true
3130
# https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
3231
password_hashers:
3332
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface: 'auto'
@@ -1354,8 +1353,6 @@ You must enable this using the ``login_throttling`` setting:
13541353
13551354
# config/packages/security.yaml
13561355
security:
1357-
# you must use the authenticator manager
1358-
enable_authenticator_manager: true
13591356
13601357
firewalls:
13611358
# ...
@@ -2289,7 +2286,6 @@ the login page):
22892286
22902287
# config/packages/security.yaml
22912288
security:
2292-
enable_authenticator_manager: true
22932289
22942290
# ...
22952291
access_control:

security/custom_authenticator.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ The authenticator can be enabled using the ``custom_authenticators`` setting:
8686
8787
# config/packages/security.yaml
8888
security:
89-
enable_authenticator_manager: true
9089
9190
# ...
9291
firewalls:
@@ -179,7 +178,7 @@ can define what happens in these cases:
179178
If your login method is interactive, which means that the user actively
180179
logged into your application, you may want your authenticator to implement the
181180
:class:`Symfony\\Component\\Security\\Http\\Authenticator\\InteractiveAuthenticatorInterface`
182-
so that it dispatches an
181+
so that it dispatches an
183182
:class:`Symfony\\Component\\Security\\Http\\Event\\InteractiveLoginEvent`
184183

185184
.. _security-passport:

security/entry_point.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ You can configure this using the ``entry_point`` setting:
1818
1919
# config/packages/security.yaml
2020
security:
21-
enable_authenticator_manager: true
2221
2322
# ...
2423
firewalls:

security/login_link.rst

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,6 @@ This authentication method can help you eliminate most of the customer support
1414
related to authentication (e.g. I forgot my password, how can I change or reset
1515
my password, etc.)
1616

17-
.. note::
18-
19-
Login links are only supported by Symfony when using the
20-
:doc:`authenticator system </security>`. Before using this
21-
authenticator, make sure you have enabled it with
22-
``enable_authenticator_manager: true`` in your ``security.yaml`` file.
23-
2417
Using the Login Link Authenticator
2518
----------------------------------
2619

0 commit comments

Comments
 (0)