Skip to content

Commit 8647ee7

Browse files
committed
update: allow torrent moderators to use sql search
1 parent 78a4e6b commit 8647ee7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Http/Livewire/TorrentSearch.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ final public function torrents(): \Illuminate\Contracts\Pagination\LengthAwarePa
423423
$this->reset('sortField');
424424
}
425425

426-
$isSqlAllowed = (($user->group->is_modo || $user->group->is_editor) && $this->driver === 'sql') || $this->description || $this->mediainfo;
426+
$isSqlAllowed = (($user->group->is_modo || $user->group->is_torrent_modo || $user->group->is_editor) && $this->driver === 'sql') || $this->description || $this->mediainfo;
427427

428428
$eagerLoads = fn (Builder $query) => $query
429429
->with(['user:id,username,group_id', 'user.group', 'category', 'type', 'resolution'])
@@ -524,7 +524,7 @@ final public function groupedTorrents()
524524
$this->reset('sortField');
525525
}
526526

527-
$isSqlAllowed = (($user->group->is_modo || $user->group->is_editor) && $this->driver === 'sql') || $this->description || $this->mediainfo;
527+
$isSqlAllowed = (($user->group->is_modo || $user->group->is_torrent_modo || $user->group->is_editor) && $this->driver === 'sql') || $this->description || $this->mediainfo;
528528

529529
$groupQuery = Torrent::query()
530530
->select('tmdb')

0 commit comments

Comments
 (0)