(
slug: IntegrationSlug,
)
| 1774 | // ------------------------------------------------------------------ |
| 1775 | |
| 1776 | const findIntegrationRow = ( |
| 1777 | slug: IntegrationSlug, |
| 1778 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 1779 | core.findFirst("integration", { |
| 1780 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 1781 | }); |
| 1782 | |
| 1783 | // Project a row's stored config into declared auth methods via the owning |
| 1784 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected