(
slug: IntegrationSlug,
)
| 2554 | // ------------------------------------------------------------------ |
| 2555 | |
| 2556 | const findIntegrationRow = ( |
| 2557 | slug: IntegrationSlug, |
| 2558 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 2559 | core.findFirst("integration", { |
| 2560 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 2561 | }); |
| 2562 | |
| 2563 | // Project a row's stored config into declared auth methods via the owning |
| 2564 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected