Merge pull request #1430 from Pallavikumarimdb/Fix/include-region-in-exitnode-query

Fix: Include "region" field in ExitNode query to match schema
This commit is contained in:
Owen Schwartz
2025-09-07 10:25:00 -07:00
committed by GitHub

View File

@@ -30,7 +30,8 @@ export async function listExitNodes(orgId: string, filterOnline = false) {
maxConnections: exitNodes.maxConnections,
online: exitNodes.online,
lastPing: exitNodes.lastPing,
type: exitNodes.type
type: exitNodes.type,
region: exitNodes.region
})
.from(exitNodes);