(
slug: IntegrationSlug,
)
| 1758 | // ------------------------------------------------------------------ |
| 1759 | |
| 1760 | const findIntegrationRow = ( |
| 1761 | slug: IntegrationSlug, |
| 1762 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 1763 | core.findFirst("integration", { |
| 1764 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 1765 | }); |
| 1766 | |
| 1767 | // Project a row's stored config into declared auth methods via the owning |
| 1768 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected