mirror of
https://github.com/ershisan99/flashcards-api.git
synced 2025-12-17 12:33:22 +00:00
resend email in progress
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
import { Module } from '@nestjs/common'
|
||||
import { JwtStrategy } from './modules/auth/strategies/jwt.strategy'
|
||||
import { JwtPayloadExtractorStrategy } from './guards/common/jwt-payload-extractor.strategy'
|
||||
import { JwtPayloadExtractorGuard } from './guards/common/jwt-payload-extractor.guard'
|
||||
import { ConfigModule } from './settings/config.module'
|
||||
import { AuthModule } from './modules/auth/auth.module'
|
||||
import { UsersModule } from './modules/users/users.module'
|
||||
import { PrismaModule } from './prisma.module'
|
||||
import { MailerModule } from '@nestjs-modules/mailer'
|
||||
import * as process from 'process'
|
||||
import { JwtRefreshStrategy } from './modules/auth/strategies/jwt-refresh.strategy'
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
@@ -29,7 +28,7 @@ import * as process from 'process'
|
||||
}),
|
||||
],
|
||||
controllers: [],
|
||||
providers: [JwtStrategy, JwtPayloadExtractorStrategy, JwtPayloadExtractorGuard],
|
||||
providers: [JwtStrategy, JwtRefreshStrategy],
|
||||
exports: [],
|
||||
})
|
||||
export class AppModule {}
|
||||
|
||||
Reference in New Issue
Block a user