faloker/purify

View on GitHub
api/src/templates/templates.module.ts

Summary

Maintainability
A
1 hr
Test Coverage
A
100%
import { Module, CacheModule, forwardRef } from '@nestjs/common';
import { MongooseModule } from '@nestjs/mongoose';
import { TemplateSchema } from './schemas/template.schema';
import { TemplatesService } from './templates.service';
import { TemplatesController } from './templates.controller';
import { ReportSchema } from 'src/reports/schemas/report.schema';
import { IssueSchema } from 'src/issues/schemas/issue.schema';
import { SlackModule } from 'src/plugins/slack/slack.module';
import { UnitSchema } from 'src/units/schemas/unit.schema';
import { ConfigModule } from '@nestjs/config';
import { UsersModule } from 'src/users/users.module';

@Module({
  imports: [
    MongooseModule.forFeature([
      { name: 'Template', schema: TemplateSchema },
      { name: 'Report', schema: ReportSchema },
      { name: 'Issue', schema: IssueSchema },
      { name: 'Unit', schema: UnitSchema },
    ]),
    CacheModule.register(),
    SlackModule,
    ConfigModule,
    forwardRef(() => UsersModule),
  ],
  providers: [TemplatesService],
  controllers: [TemplatesController],
  exports: [TemplatesService],
})
export class TemplatesModule {}