File tree 4 files changed +1
-14
lines changed
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:
27
27
28
28
# config/packages/security.yaml
29
29
security :
30
- enable_authenticator_manager : true
31
30
# https://symfony.com/doc/current/security.html#registering-the-user-hashing-passwords
32
31
password_hashers :
33
32
Symfony\Component\Security\Core\User\PasswordAuthenticatedUserInterface : ' auto'
@@ -1354,8 +1353,6 @@ You must enable this using the ``login_throttling`` setting:
1354
1353
1355
1354
# config/packages/security.yaml
1356
1355
security :
1357
- # you must use the authenticator manager
1358
- enable_authenticator_manager : true
1359
1356
1360
1357
firewalls :
1361
1358
# ...
@@ -2289,7 +2286,6 @@ the login page):
2289
2286
2290
2287
# config/packages/security.yaml
2291
2288
security :
2292
- enable_authenticator_manager : true
2293
2289
2294
2290
# ...
2295
2291
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:
86
86
87
87
# config/packages/security.yaml
88
88
security :
89
- enable_authenticator_manager : true
90
89
91
90
# ...
92
91
firewalls :
@@ -179,7 +178,7 @@ can define what happens in these cases:
179
178
If your login method is interactive, which means that the user actively
180
179
logged into your application, you may want your authenticator to implement the
181
180
:class: `Symfony\\ Component\\ Security\\ Http\\ Authenticator\\ InteractiveAuthenticatorInterface `
182
- so that it dispatches an
181
+ so that it dispatches an
183
182
:class: `Symfony\\ Component\\ Security\\ Http\\ Event\\ InteractiveLoginEvent `
184
183
185
184
.. _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:
18
18
19
19
# config/packages/security.yaml
20
20
security :
21
- enable_authenticator_manager : true
22
21
23
22
# ...
24
23
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
14
14
related to authentication (e.g. I forgot my password, how can I change or reset
15
15
my password, etc.)
16
16
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
-
24
17
Using the Login Link Authenticator
25
18
----------------------------------
26
19
You can’t perform that action at this time.
0 commit comments