Include region field in ExitNode query to match schema

This commit is contained in:
Pallavi
2025-09-07 22:47:06 +05:30
parent 8aee2ec3a1
commit bf9ce0df9b

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);