From 585e571627f79d07fa09174e1b187b53828cb5ed Mon Sep 17 00:00:00 2001 From: Antoine Lamirault Date: Mon, 16 Oct 2023 21:04:03 +0200 Subject: [PATCH] Document InteractiveLoginEvent --- security.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/security.rst b/security.rst index 0f2c338c0a4..5a44ca2122b 100644 --- a/security.rst +++ b/security.rst @@ -2654,6 +2654,12 @@ Authentication Events Other Events ~~~~~~~~~~~~ +:class:`Symfony\\Component\\Security\\Http\\Event\\InteractiveLoginEvent` + Dispatched after authentication was fully successful only when the authenticator + implements :class:`Symfony\\Component\\Security\\Http\\Authenticator\\InteractiveAuthenticatorInterface`, + which indicates login requires explicit user action (e.g. a login form). + Listeners to this event can modify the response sent back to the user. + :class:`Symfony\\Component\\Security\\Http\\Event\\LogoutEvent` Dispatched just before a user logs out of your application. See :ref:`security-logging-out`.