mirror of
https://github.com/flarum/framework.git
synced 2024-12-02 23:23:52 +08:00
Use correct method from contract
This commit is contained in:
parent
8e331d5817
commit
ea207241f3
|
@ -94,7 +94,7 @@ class DiscussionPolicy extends AbstractPolicy
|
||||||
$query->whereNull('discussions.hide_time')
|
$query->whereNull('discussions.hide_time')
|
||||||
->orWhere('start_user_id', $actor->id)
|
->orWhere('start_user_id', $actor->id)
|
||||||
->orWhere(function ($query) use ($actor) {
|
->orWhere(function ($query) use ($actor) {
|
||||||
$this->events->fire(
|
$this->events->dispatch(
|
||||||
new ScopeModelVisibility($query, $actor, 'hide')
|
new ScopeModelVisibility($query, $actor, 'hide')
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue
Block a user