(toolkitId: string, connectionId: string)
| 470 | }); |
| 471 | |
| 472 | const removeConnection = (toolkitId: string, connectionId: string) => |
| 473 | Effect.gen(function* () { |
| 474 | const toolkit = yield* requireToolkit(toolkitId); |
| 475 | yield* requireConnection(toolkitId, connectionId, toolkit.owner); |
| 476 | yield* storage.connections.remove({ owner: toolkit.owner, key: connectionId }); |
| 477 | }); |
| 478 | |
| 479 | const policyRulesForSlug = ( |
| 480 | slug: string, |
nothing calls this directly
no test coverage detected