File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -502,8 +502,10 @@ Frequently Asked Questions
502502 logout : ~
503503
504504 guard :
505+ entry_point : app.form_login_authenticator
505506 authenticators :
506507 - app.token_authenticator
508+ - app.form_login_authenticator
507509
508510 # if you want, disable storing the user in the session
509511 # stateless: true
@@ -529,8 +531,9 @@ Frequently Asked Questions
529531 >
530532 <logout />
531533
532- <guard >
534+ <guard entry-point = " app.form_login_authenticator " >
533535 <authenticator >app.token_authenticator</authenticator >
536+ <authenticator >app.form_login_authenticator</authenticator >
534537 </guard >
535538
536539 <!-- ... -->
@@ -551,8 +554,10 @@ Frequently Asked Questions
551554 'anonymous' => true,
552555 'logout' => true,
553556 'guard' => array(
557+ 'entry_point' => 'app.form_login_authenticator',
554558 'authenticators' => array(
555- 'app.token_authenticator'
559+ 'app.token_authenticator',
560+ 'app.form_login_authenticator',
556561 ),
557562 ),
558563 // ...
You can’t perform that action at this time.
0 commit comments