(
slug: IntegrationSlug,
)
| 3114 | // ------------------------------------------------------------------ |
| 3115 | |
| 3116 | const findIntegrationRow = ( |
| 3117 | slug: IntegrationSlug, |
| 3118 | ): Effect.Effect<IntegrationRow | null, StorageFailure> => |
| 3119 | core.findFirst("integration", { |
| 3120 | where: (b: AnyCb) => b("slug", "=", String(slug)), |
| 3121 | }); |
| 3122 | |
| 3123 | /** Every slug in the tenant's catalog — the set an owned row's |
| 3124 | * `integration` must belong to for the row to be servable. */ |
no outgoing calls
no test coverage detected