(
slug: IntegrationSlug,
)
| 3065 | // ------------------------------------------------------------------ |
| 3066 | |
| 3067 | const findIntegrationRow = ( |
| 3068 | slug: IntegrationSlug, |
| 3069 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 3070 | core.findFirst("integration", { |
| 3071 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 3072 | }); |
| 3073 | |
| 3074 | // Project a row's stored config into declared auth methods via the owning |
| 3075 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected