mirror of
http://172.20.10.11:3000/gitadmin/INSIGHT-MVP.git
synced 2026-06-25 00:16:41 +02:00
fix(core): export EntraIdService from AuthModule for IntegrationsModule DI
IntegrationsService benötigt EntraIdService (Token-Refresh), der in AuthModule als Provider registriert aber nicht exportiert war. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
30c4b208d9
commit
05ccabfdb4
1 changed files with 1 additions and 1 deletions
|
|
@ -44,6 +44,6 @@ import { SsoController } from './sso/sso.controller';
|
||||||
],
|
],
|
||||||
controllers: [AuthController, SsoController],
|
controllers: [AuthController, SsoController],
|
||||||
providers: [AuthService, JwtStrategy, TotpService, EntraIdService],
|
providers: [AuthService, JwtStrategy, TotpService, EntraIdService],
|
||||||
exports: [AuthService, JwtModule],
|
exports: [AuthService, JwtModule, EntraIdService],
|
||||||
})
|
})
|
||||||
export class AuthModule {}
|
export class AuthModule {}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue