23 lines
720 B
TypeScript
23 lines
720 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AuthService } from './auth.service';
|
|
import { AuthController } from './auth.controller';
|
|
import { TypeOrmModule } from '@nestjs/typeorm';
|
|
import { Setting } from '../settings/entities/setting.entity';
|
|
import { JwtModule } from '@nestjs/jwt';
|
|
import { PassportModule } from '@nestjs/passport';
|
|
import { JwtStrategy } from './jwt.strategy';
|
|
|
|
@Module({
|
|
imports: [
|
|
TypeOrmModule.forFeature([Setting]),
|
|
PassportModule,
|
|
JwtModule.register({
|
|
secret: 'SECRET_KEY_CHANGE_ME',
|
|
signOptions: { expiresIn: '24h' },
|
|
}),
|
|
],
|
|
providers: [AuthService, JwtStrategy],
|
|
controllers: [AuthController],
|
|
exports: [AuthService],
|
|
})
|
|
export class AuthModule {} |