added offline inquiry in system setting also fix some bugs

This commit is contained in:
2026-08-03 11:49:24 +03:30
parent ab4f667c8d
commit 7f672541ae
19 changed files with 965 additions and 26 deletions

View File

@@ -1,5 +1,6 @@
import { Module } from "@nestjs/common";
import { MongooseModule } from "@nestjs/mongoose";
import { FanavaranLookupModule } from "src/fanavaran/fanavaran-lookup.module";
import { SystemSettingsDbService } from "./entities/db-service/system-settings.db.service";
import {
SystemSettingsModel,
@@ -13,6 +14,7 @@ import { SystemSettingsService } from "./system-settings.service";
MongooseModule.forFeature([
{ name: SystemSettingsModel.name, schema: SystemSettingsSchema },
]),
FanavaranLookupModule,
],
controllers: [SystemSettingsController],
providers: [SystemSettingsService, SystemSettingsDbService],