Files
ldap-identidy/apps/api/src/password/password.module.ts
Bastian Wagner 3e5348b7ec initial
2026-07-15 14:09:28 +02:00

17 lines
703 B
TypeScript

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 {}