fix: 修复v2ray、Trojan旧版接口获取用户列表失败的问题

This commit is contained in:
xboard
2023-12-16 08:05:09 +08:00
parent 92532333cb
commit 44eb05fb5b
3 changed files with 4 additions and 3 deletions
+2 -1
View File
@@ -12,6 +12,7 @@ use App\Models\ServerVmess;
use App\Models\ServerTrojan;
use App\Utils\CacheKey;
use App\Utils\Helper;
use Illuminate\Support\Collection;
use Illuminate\Support\Facades\Cache;
class ServerService
@@ -161,7 +162,7 @@ class ServerService
}, $servers);
}
public function getAvailableUsers($groupId)
public function getAvailableUsers($groupId): Collection
{
return \DB::table('v2_user')
->whereIn('group_id', $groupId)