From 392446fa0671d05b5539674bbed5e9137c42e6e7 Mon Sep 17 00:00:00 2001 From: Mathis Date: Tue, 8 Oct 2024 13:26:10 +0200 Subject: [PATCH] Add CredentialsModule to MachinesModule imports This change includes the CredentialsModule in the imports array of the MachinesModule. This integration ensures that machine-related operations have access to necessary credential services. --- apps/backend/src/app/machines/machines.module.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/backend/src/app/machines/machines.module.ts b/apps/backend/src/app/machines/machines.module.ts index f0a79fc..6ab956d 100644 --- a/apps/backend/src/app/machines/machines.module.ts +++ b/apps/backend/src/app/machines/machines.module.ts @@ -2,9 +2,10 @@ import { Module } from "@nestjs/common"; import { DbModule } from "apps/backend/src/app/db/db.module"; import { MachinesController } from "apps/backend/src/app/machines/machines.controller"; import { MachinesService } from "apps/backend/src/app/machines/machines.service"; +import { CredentialsModule } from 'apps/backend/src/app/credentials/credentials.module'; @Module({ - imports: [DbModule], + imports: [DbModule, CredentialsModule], controllers: [MachinesController], providers: [MachinesService], })