(tool: Tool)
| 3968 | // which connection serves it; the org/user split is handled by owner-scoped |
| 3969 | // policy rows + ownerRank, not the match pattern. |
| 3970 | const normalizedPolicyId = (tool: Tool): string => |
| 3971 | tool.static |
| 3972 | ? String(tool.address) |
| 3973 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 3974 | |
| 3975 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 3976 | core |
no outgoing calls
no test coverage detected