feat( iam ): integrate IAM for auth — register, login, lazy provisioning

This commit is contained in:
Abubeker Yasin
2026-06-06 08:29:26 +03:00
parent 8a84441faf
commit d06debf1ca
10 changed files with 874 additions and 214 deletions

View File

@@ -4,6 +4,7 @@ import { PassportModule } from '@nestjs/passport';
import { ConfigService } from '@nestjs/config';
import { AuthController } from './auth.controller';
import { AuthService } from './auth.service';
import { PassengerAuthService } from './passenger-auth.service';
import { JwtStrategy } from '../../common/jwt.strategy';
@Module({
@@ -18,7 +19,7 @@ import { JwtStrategy } from '../../common/jwt.strategy';
}),
],
controllers: [AuthController],
providers: [AuthService, JwtStrategy],
providers: [AuthService, PassengerAuthService, JwtStrategy],
exports: [JwtModule],
})
export class AuthModule {}