(userId: string, workspaceId?: string)
| 29 | }) |
| 30 | |
| 31 | function getEffectiveDecryptedEnvCacheKey(userId: string, workspaceId?: string): string { |
| 32 | return JSON.stringify([userId, workspaceId ?? null]) |
| 33 | } |
| 34 | |
| 35 | function cloneEnvVars(envVars: Record<string, string>): Record<string, string> { |
| 36 | return { ...envVars } |
no outgoing calls
no test coverage detected