(
slug: IntegrationSlug,
)
| 1736 | // ------------------------------------------------------------------ |
| 1737 | |
| 1738 | const findIntegrationRow = ( |
| 1739 | slug: IntegrationSlug, |
| 1740 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 1741 | core.findFirst("integration", { |
| 1742 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 1743 | }); |
| 1744 | |
| 1745 | // Project a row's stored config into declared auth methods via the owning |
| 1746 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected