( environmentId: string, ingressUrl?: string, )
| 37 | |
| 38 | /** Build the connect URL shown when the bridge is idle. */ |
| 39 | export function buildBridgeConnectUrl( |
| 40 | environmentId: string, |
| 41 | ingressUrl?: string, |
| 42 | ): string { |
| 43 | const baseUrl = getClaudeAiBaseUrl(undefined, ingressUrl) |
| 44 | return `${baseUrl}/code?bridge=${environmentId}` |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * Build the session URL shown when a session is attached. Delegates to |
no test coverage detected