(
slug: IntegrationSlug,
)
| 2922 | // ------------------------------------------------------------------ |
| 2923 | |
| 2924 | const findIntegrationRow = ( |
| 2925 | slug: IntegrationSlug, |
| 2926 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 2927 | core.findFirst("integration", { |
| 2928 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 2929 | }); |
| 2930 | |
| 2931 | // Project a row's stored config into declared auth methods via the owning |
| 2932 | // plugin's `describeAuthMethods` hook. The hook is plugin-authored, so a |
no outgoing calls
no test coverage detected