(
slug: IntegrationSlug,
)
| 2752 | // ------------------------------------------------------------------ |
| 2753 | |
| 2754 | const findIntegrationRow = ( |
| 2755 | slug: IntegrationSlug, |
| 2756 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 2757 | core.findFirst("integration", { |
| 2758 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 2759 | }); |
| 2760 | |
| 2761 | // Project a row's stored config into declared auth methods via the owning |
| 2762 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected