(
slug: IntegrationSlug,
)
| 2186 | // ------------------------------------------------------------------ |
| 2187 | |
| 2188 | const findIntegrationRow = ( |
| 2189 | slug: IntegrationSlug, |
| 2190 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 2191 | core.findFirst("integration", { |
| 2192 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 2193 | }); |
| 2194 | |
| 2195 | // Project a row's stored config into declared auth methods via the owning |
| 2196 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected