(
slug: IntegrationSlug,
)
| 2232 | // ------------------------------------------------------------------ |
| 2233 | |
| 2234 | const findIntegrationRow = ( |
| 2235 | slug: IntegrationSlug, |
| 2236 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 2237 | core.findFirst("integration", { |
| 2238 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 2239 | }); |
| 2240 | |
| 2241 | // Project a row's stored config into declared auth methods via the owning |
| 2242 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected