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