(tool: Tool)
| 4352 | // which connection serves it; the org/user split is handled by owner-scoped |
| 4353 | // policy rows + ownerRank, not the match pattern. |
| 4354 | const normalizedPolicyId = (tool: Tool): string => |
| 4355 | tool.static |
| 4356 | ? String(tool.address) |
| 4357 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 4358 | |
| 4359 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 4360 | core |
no outgoing calls
no test coverage detected