Skip to content

Commit c9c98b8

Browse files
committed
Fix issue with listing users due to removed 'subuserOf' method
1 parent b395440 commit c9c98b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Repositories/Eloquent/UserRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public function model()
2929
*/
3030
public function getAllUsersWithCounts(): LengthAwarePaginator
3131
{
32-
return $this->getBuilder()->withCount('servers', 'subuserOf')
32+
return $this->getBuilder()->withCount('servers')
3333
->search($this->getSearchTerm())
3434
->paginate(50, $this->getColumns());
3535
}

0 commit comments

Comments
 (0)