(tool: Tool)
| 3479 | // which connection serves it; the org/user split is handled by owner-scoped |
| 3480 | // policy rows + ownerRank, not the match pattern. |
| 3481 | const normalizedPolicyId = (tool: Tool): string => |
| 3482 | tool.static |
| 3483 | ? String(tool.address) |
| 3484 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 3485 | |
| 3486 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 3487 | core |
no outgoing calls
no test coverage detected