Skip to content

Commit b3b2332

Browse files
committed
fix: auth
1 parent c4493d9 commit b3b2332

File tree

3 files changed

+14
-14
lines changed

3 files changed

+14
-14
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
"@nestjs/passport": "^11.0.5",
4040
"@nestjs/platform-express": "^11.1.9",
4141
"@nestjs/schedule": "^6.0.0",
42-
"@nestjs/swagger": "^11.2.3",
42+
"@nestjs/swagger": "^11.2.4",
4343
"@sentry/nestjs": "^10.32.1",
4444
"@sentry/profiling-node": "^10.32.1",
4545
"bull": "^4.16.5",

pnpm-lock.yaml

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/auth/auth.module.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { HttpModule } from '@nestjs/axios';
22
import { Global, Module } from '@nestjs/common';
33
import { ConfigService } from '@nestjs/config';
4-
import { JwtModule, JwtService } from '@nestjs/jwt';
4+
import { JwtModule } from '@nestjs/jwt';
55
import { PassportModule } from '@nestjs/passport';
66
import { AuthController } from './auth.controller';
77
import { AuthService } from './auth.service';
@@ -21,7 +21,7 @@ import { JwtStrategy } from './strategies';
2121
}),
2222
],
2323
controllers: [AuthController],
24-
providers: [AuthService, JwtStrategy, JwtService],
25-
exports: [AuthService, JwtStrategy, JwtService],
24+
providers: [AuthService, JwtStrategy],
25+
exports: [AuthService, JwtStrategy],
2626
})
2727
export class AuthModule {}

0 commit comments

Comments
 (0)