model.auth.afterImpersonate

Triggered in October\Rain\Auth\Concerns\HasImpersonation.

Example usage:

$model->bindEvent('model.auth.afterImpersonate', function (\October\Rain\Database\Model|null $oldUser) use (\October\Rain\Database\Model $model) {
    traceLog($oldUser->full_name . ' has stopped impersonating ' . $model->full_name);
});