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
|`Illuminate\Auth\Events\Login`| Raised when a user is logging in. The model of the user is provided with the event. |
46
+
|`Auth0\Laravel\Contract\Event\Stateful\LoginAttempting`| Raised before the login redirect is issued, allowing an opportunity to customize parameters. |
46
47
47
48
## Callback Controller Events
48
49
49
50
During callback with the `Auth0\Laravel\Http\Controller\Stateful\Callback` controller, the following events may be raised:
|`Illuminate\Auth\Events\Attempting`| Raised when a user is returned to the application after authenticating with Auth0. This is raised before verification of the authentication process begins. |
54
-
|`Illuminate\Auth\Events\Failed`| Raised when authentication with Auth0 failed. The reason is provided with the event as an array. |
|`Illuminate\Auth\Events\Attempting`| Raised when a user is returned to the application after authenticating with Auth0. This is raised before verification of the authentication process begins. |
55
+
|`Illuminate\Auth\Events\Failed`| Raised when authentication with Auth0 failed. The reason is provided with the event as an array. |
55
56
|`Auth0\Laravel\Event\Stateful\AuthenticationFailed`| Raised when authentication with Auth0 failed. This provides an opportunity to intercept the exception thrown by the middleware, by using the event's `setThrowException()` method to `false`. You can also customize the type of exception thrown using `setException()`. |
56
-
|`Illuminate\Auth\Events\Illuminate\Auth\Events\Validated`| Raised when authentication was successful, but immediately before the user's session is established. |
57
-
|`Auth0\Laravel\Event\Stateful\AuthenticationSucceeded`| Raised when authentication was successful. The model of the authenticated user is provided with the event. |
57
+
|`Illuminate\Auth\Events\Illuminate\Auth\Events\Validated`| Raised when authentication was successful, but immediately before the user's session is established. |
58
+
|`Auth0\Laravel\Event\Stateful\AuthenticationSucceeded`| Raised when authentication was successful. The model of the authenticated user is provided with the event. |
0 commit comments