(
slug: IntegrationSlug,
)
| 2172 | // ------------------------------------------------------------------ |
| 2173 | |
| 2174 | const findIntegrationRow = ( |
| 2175 | slug: IntegrationSlug, |
| 2176 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 2177 | core.findFirst("integration", { |
| 2178 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 2179 | }); |
| 2180 | |
| 2181 | // Project a row's stored config into declared auth methods via the owning |
| 2182 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected