This commit is contained in:
richarjiang
2025-12-01 17:58:59 +08:00
parent 7ce51409af
commit 5b89a07751
17 changed files with 1094 additions and 43 deletions

View File

@@ -1,4 +1,4 @@
import { Module } from '@nestjs/common';
import { Module, forwardRef } from '@nestjs/common';
import { SequelizeModule } from '@nestjs/sequelize';
import { PushNotificationsController } from './push-notifications.controller';
import { PushTemplateController } from './push-template.controller';
@@ -22,8 +22,8 @@ import { ChallengeParticipant } from '../challenges/models/challenge-participant
imports: [
ConfigModule,
DatabaseModule,
UsersModule,
ChallengesModule,
forwardRef(() => UsersModule),
forwardRef(() => ChallengesModule),
SequelizeModule.forFeature([
UserPushToken,
PushMessage,