(tool: Tool)
| 3380 | // which connection serves it; the org/user split is handled by owner-scoped |
| 3381 | // policy rows + ownerRank, not the match pattern. |
| 3382 | const normalizedPolicyId = (tool: Tool): string => |
| 3383 | tool.static |
| 3384 | ? String(tool.address) |
| 3385 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 3386 | |
| 3387 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 3388 | core |
no outgoing calls
no test coverage detected