This commit is contained in:
2026-02-22 12:31:28 +03:30
parent bba31e98ba
commit 2ea4c17c50
+2
View File
@@ -10,11 +10,13 @@ import { LearningCategoryRepository } from './repositories/learning-category.rep
import { LearningProgressRepository } from './repositories/learning-progress.repository'; import { LearningProgressRepository } from './repositories/learning-progress.repository';
import { LearningRepository } from './repositories/learning.repository'; import { LearningRepository } from './repositories/learning.repository';
import { UserModule } from '../user/user.module'; import { UserModule } from '../user/user.module';
import { JwtModule } from '@nestjs/jwt';
@Module({ @Module({
imports: [ imports: [
MikroOrmModule.forFeature([Learning, LearningCategory, LearningProgress]), MikroOrmModule.forFeature([Learning, LearningCategory, LearningProgress]),
UserModule, UserModule,
JwtModule,
], ],
providers: [ providers: [
LearningService, LearningService,