* add eslint config * migrate autoLock to features * migrate teamService to features * migrate userCreationService * migrate insights services to features * migrate ProfileRepository * update imports * migrate filter segmen tests * migrate filter segment repository * migrate getBusyTimes * migrate getLocaleFromRequest * refactor csvUtils * make filename clearer * migrate getLuckyUser integration test * migrate autoLock test to features * wip * refactors * migrate useBookerUrl * migrate more * wip * Migrate eventTypeRepository * membership repository * update imports * update imports * migrate * move organization repository * update imports * update imports * wip * wip * wip * wip * wip * wip * wip * wip * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix tests * fix type checks * fix * fix * migrate * update imports * fix tests * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix * fix
11 lines
544 B
TypeScript
11 lines
544 B
TypeScript
import type { IInsightsRoutingService } from "@calcom/features/insights/services/InsightsRoutingDIService";
|
|
import { InsightsRoutingService } from "@calcom/features/insights/services/InsightsRoutingDIService";
|
|
|
|
import { createModule } from "../di";
|
|
import { DI_TOKENS } from "../tokens";
|
|
|
|
export const insightsRoutingModule = createModule();
|
|
insightsRoutingModule.bind(DI_TOKENS.INSIGHTS_ROUTING_SERVICE).toClass(InsightsRoutingService, {
|
|
prisma: DI_TOKENS.READ_ONLY_PRISMA_CLIENT,
|
|
} satisfies Record<keyof IInsightsRoutingService, symbol>);
|