Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Triggered in: Winter\Storm\Auth\Manager.php
Called before the user in question is impersonated. Current user is false when either the system or a
user from a separate authentication system authorized the impersonation. Use this to override the results
of $user->canBeImpersonated()
if desired.
Example usage:
$model->bindEvent('model.auth.beforeImpersonate', function (\Winter\Storm\Auth\Models\User|false $impersonator) use (\Winter\Storm\Models\Auth\User $model) {
\Log::info($impersonator->full_name . ' is attempting to impersonate ' . $model->full_name);
// Ignore the results of $model->canBeImpersonated() and grant impersonation access
// return true;
// Ignore the results of $model->canBeImpersonated() and deny impersonation access
// return false;
});
Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Published May 2, 2022
v1.2 with Laravel 9 Support Now Available For Testing!
Released February 15, 2022
11 UX/UI Improvements, 12 API Changes, 12 Bug Fixes, 6 Security Improvements, 8 Translation Improvements, 5 Community Improvements, 1 Dependency