You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After a user clicks the registration link in the confirmation e-mail, he lands at /registration/confirmed. The user now is granted IS_AUTHENTICATED_FULLY automatically, and is considered logged in. However, none of Symfony2's security or authentication events that are thrown upon a regular login have now dispatched: in particular security.authentication.success and security.interactive_login. This means that there's no room for any custom login or authentication listeners to do their work.
Should the ‘magic’ login after registration confirmation throw any of these events? Or is there another way for me to hook into the process?
The text was updated successfully, but these errors were encountered:
After a user clicks the registration link in the confirmation e-mail, he lands at
/registration/confirmed
. The user now is grantedIS_AUTHENTICATED_FULLY
automatically, and is considered logged in. However, none of Symfony2's security or authentication events that are thrown upon a regular login have now dispatched: in particularsecurity.authentication.success
andsecurity.interactive_login
. This means that there's no room for any custom login or authentication listeners to do their work.Should the ‘magic’ login after registration confirmation throw any of these events? Or is there another way for me to hook into the process?
The text was updated successfully, but these errors were encountered: