(tool: Tool)
| 3132 | // which connection serves it; the org/user split is handled by owner-scoped |
| 3133 | // policy rows + ownerRank, not the match pattern. |
| 3134 | const normalizedPolicyId = (tool: Tool): string => |
| 3135 | tool.static |
| 3136 | ? String(tool.address) |
| 3137 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 3138 | |
| 3139 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 3140 | core |
no outgoing calls
no test coverage detected