Skip to content

Commit b6aed2a

Browse files
authored
fix: missing import depedencie (#50)
This pull request updates the module dependencies for both the `staff-academic-grading` and `staff-academic-chaos-grading` modules. The main change is the addition of the `StaffStatusUpdaterModule` as an import in both modules, which will allow them to use the services and providers from the status updater module. Dependency management: * Added `StaffStatusUpdaterModule` to the `imports` array in `StaffAcademicGradingModule` to enable access to staff status updating functionality. * Added `StaffStatusUpdaterModule` to the `imports` array in `StaffAcademicChaosGradingModule` for the same purpose.
2 parents 7b0c5f9 + e02fdde commit b6aed2a

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { Module } from "@nestjs/common";
2+
import { StaffStatusUpdaterModule } from "../staff-status-updater/staff-status-updater.module";
23
import { StaffAcademicChaosGradingController } from "./staff-academic-chaos-grading.controller";
34
import { StaffAcademicChaosGradingService } from "./staff-academic-chaos-grading.service";
45

56
@Module({
67
controllers: [StaffAcademicChaosGradingController],
78
providers: [StaffAcademicChaosGradingService],
9+
imports: [StaffStatusUpdaterModule],
810
})
911
export class StaffAcademicChaosGradingModule {}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
import { Module } from "@nestjs/common";
2+
import { StaffStatusUpdaterModule } from "../staff-status-updater/staff-status-updater.module";
23
import { StaffAcademicGradingController } from "./staff-academic-grading.controller";
34
import { StaffAcademicGradingService } from "./staff-academic-grading.service";
45

56
@Module({
67
controllers: [StaffAcademicGradingController],
78
providers: [StaffAcademicGradingService],
9+
imports: [StaffStatusUpdaterModule],
810
})
911
export class StaffAcademicGradingModule {}

0 commit comments

Comments
 (0)