/
githubmirror
/
novu
Обзор
Документация
Войти
/
githubmirror
/
novu
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
next
apps/api/src/app/widgets/widgets.module.ts
24 строки
880 B
George Djabarov
feat(api-service): outbound webhooks events fixes NV-6483 (#8888)
12 авг 2025, 17:39
Не верифицирован
12 авг 2025, 17:39
9e07ad9
Код
Авторство
О чём код?
import { forwardRef, Module } from '@nestjs/common'; import { CommunityOrganizationRepository } from '@novu/dal'; import { AuthModule } from '../auth/auth.module'; import { IntegrationModule } from '../integrations/integrations.module'; import { OutboundWebhooksModule } from '../outbound-webhooks/outbound-webhooks.module'; import { SharedModule } from '../shared/shared.module'; import { SubscribersV1Module } from '../subscribers/subscribersV1.module'; import { USE_CASES } from './usecases'; import { WidgetsController } from './widgets.controller'; @Module({ imports: [ SharedModule, forwardRef(() => SubscribersV1Module), AuthModule, IntegrationModule, OutboundWebhooksModule.forRoot(), ], providers: [...USE_CASES, CommunityOrganizationRepository], exports: [...USE_CASES], controllers: [WidgetsController], }) export class WidgetsModule {}