(tool: Tool)
| 5951 | // which connection serves it; the org/user split is handled by owner-scoped |
| 5952 | // policy rows + ownerRank, not the match pattern. |
| 5953 | const normalizedPolicyId = (tool: Tool): string => |
| 5954 | tool.static |
| 5955 | ? String(tool.address) |
| 5956 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 5957 | |
| 5958 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 5959 | core |
no outgoing calls
no test coverage detected