mirror of
https://github.com/flarum/core.git
synced 2025-07-19 15:51:16 +02:00
Let users see themselves even if they can't see the forum
This commit is contained in:
@@ -15,7 +15,11 @@ trait VisibleScope
|
||||
public function scopeWhereVisibleTo(Builder $query, User $actor)
|
||||
{
|
||||
if (! app('flarum.forum')->can($actor, 'view')) {
|
||||
$query->whereRaw('FALSE');
|
||||
if ($this instanceof User) {
|
||||
$query->where('id', $actor->id);
|
||||
} else {
|
||||
$query->whereRaw('FALSE');
|
||||
}
|
||||
} else {
|
||||
event(new ScopeModelVisibility($this, $query, $actor));
|
||||
}
|
||||
|
Reference in New Issue
Block a user