(tool: Tool)
| 5360 | // which connection serves it; the org/user split is handled by owner-scoped |
| 5361 | // policy rows + ownerRank, not the match pattern. |
| 5362 | const normalizedPolicyId = (tool: Tool): string => |
| 5363 | tool.static |
| 5364 | ? String(tool.address) |
| 5365 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 5366 | |
| 5367 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 5368 | core |
no outgoing calls
no test coverage detected