File tree Expand file tree Collapse file tree 4 files changed +1
-14
lines changed Expand file tree Collapse file tree 4 files changed +1
-14
lines changed Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff line change @@ -14,13 +14,6 @@ This authentication method can help you eliminate most of the customer support
1414related to authentication (e.g. I forgot my password, how can I change or reset
1515my 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-
2417Using the Login Link Authenticator
2518----------------------------------
2619
You can’t perform that action at this time.
0 commit comments