initial
This commit is contained in:
16
apps/api/src/password/password.module.ts
Normal file
16
apps/api/src/password/password.module.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { TypeOrmModule } from '@nestjs/typeorm';
|
||||
import { AuditModule } from '../audit/audit.module';
|
||||
import { AuthModule } from '../auth/auth.module';
|
||||
import { LldapModule } from '../lldap/lldap.module';
|
||||
import { MailModule } from '../mail/mail.module';
|
||||
import { PasswordResetToken } from './password-reset-token.entity';
|
||||
import { PasswordController } from './password.controller';
|
||||
import { PasswordService } from './password.service';
|
||||
|
||||
@Module({
|
||||
imports: [TypeOrmModule.forFeature([PasswordResetToken]), AuthModule, LldapModule, MailModule, AuditModule],
|
||||
controllers: [PasswordController],
|
||||
providers: [PasswordService],
|
||||
})
|
||||
export class PasswordModule {}
|
||||
Reference in New Issue
Block a user