refactor: enhance module exports and imports across services

Refactor multiple modules to improve dependency management by adding missing imports (e.g., `AuthModule`, `CryptoModule`) and ensuring essential services and repositories are exported. Update Dockerfile for better build and runtime efficiency, improve CORS handling, and enhance validation with updates to DTOs. Include package.json refinements for dependency organization.
This commit is contained in:
Mathis HERRIOT
2026-01-14 16:36:59 +01:00
parent bd9dd140ab
commit 37a23390d5
15 changed files with 98 additions and 47 deletions

View File

@@ -7,6 +7,6 @@ import { SessionsService } from "./sessions.service";
@Module({
imports: [DatabaseModule, CryptoModule],
providers: [SessionsService, SessionsRepository],
exports: [SessionsService],
exports: [SessionsService, SessionsRepository],
})
export class SessionsModule {}