File tree 1 file changed +7
-2
lines changed
1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -502,8 +502,10 @@ Frequently Asked Questions
502
502
logout : ~
503
503
504
504
guard :
505
+ entry_point : app.form_login_authenticator
505
506
authenticators :
506
507
- app.token_authenticator
508
+ - app.form_login_authenticator
507
509
508
510
# if you want, disable storing the user in the session
509
511
# stateless: true
@@ -529,8 +531,9 @@ Frequently Asked Questions
529
531
>
530
532
<logout />
531
533
532
- <guard >
534
+ <guard entry-point = " app.form_login_authenticator " >
533
535
<authenticator >app.token_authenticator</authenticator >
536
+ <authenticator >app.form_login_authenticator</authenticator >
534
537
</guard >
535
538
536
539
<!-- ... -->
@@ -551,8 +554,10 @@ Frequently Asked Questions
551
554
'anonymous' => true,
552
555
'logout' => true,
553
556
'guard' => array(
557
+ 'entry_point' => 'app.form_login_authenticator',
554
558
'authenticators' => array(
555
- 'app.token_authenticator'
559
+ 'app.token_authenticator',
560
+ 'app.form_login_authenticator',
556
561
),
557
562
),
558
563
// ...
You can’t perform that action at this time.
0 commit comments