fix: added scope for github strategy in auth module

This commit is contained in:
Balu Babu
2023-01-18 22:34:15 +05:30
parent 4edd0e0ab7
commit 81cb0d43d7
7 changed files with 100 additions and 23 deletions

View File

@@ -10,6 +10,7 @@ import { JwtStrategy } from './strategies/jwt.strategy';
import { RTJwtStrategy } from './strategies/rt-jwt.strategy';
import { GoogleStrategy } from './strategies/google.strategy';
import { GithubStrategy } from './strategies/github.strategy';
import { MicrosoftStrategy } from './strategies/microsoft.strategy';
@Module({
imports: [
@@ -27,6 +28,7 @@ import { GithubStrategy } from './strategies/github.strategy';
RTJwtStrategy,
GoogleStrategy,
GithubStrategy,
MicrosoftStrategy,
],
controllers: [AuthController],
})