(tool: Tool)
| 3809 | // which connection serves it; the org/user split is handled by owner-scoped |
| 3810 | // policy rows + ownerRank, not the match pattern. |
| 3811 | const normalizedPolicyId = (tool: Tool): string => |
| 3812 | tool.static |
| 3813 | ? String(tool.address) |
| 3814 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 3815 | |
| 3816 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 3817 | core |
no outgoing calls
no test coverage detected