update: remove v2ray viewconfig api

This commit is contained in:
tokumeikoi
2022-06-12 23:20:24 +08:00
parent a0b14029cd
commit fb48e1a721
4 changed files with 2 additions and 12 deletions

View File

@ -89,13 +89,4 @@ class V2rayController extends Controller
'data' => true
]);
}
public function viewConfig(Request $request)
{
$serverService = new ServerService();
$config = $serverService->getV2RayConfig($request->input('node_id'), 23333);
return response([
'data' => $config
]);
}
}