(tool: Tool)
| 3922 | // which connection serves it; the org/user split is handled by owner-scoped |
| 3923 | // policy rows + ownerRank, not the match pattern. |
| 3924 | const normalizedPolicyId = (tool: Tool): string => |
| 3925 | tool.static |
| 3926 | ? String(tool.address) |
| 3927 | : `${tool.integration}.${tool.owner}.${tool.connection}.${tool.name}`; |
| 3928 | |
| 3929 | const policiesList = (): Effect.Effect<readonly ToolPolicy[], StorageFailure> => |
| 3930 | core |
no outgoing calls
no test coverage detected