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:
Thomas Reitz 2026-03-12 22:52:56 +01:00
parent 30c4b208d9
commit 05ccabfdb4

View file

@ -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 {}