|
1 | | -import { Module } from '@nestjs/common'; |
2 | | -import { ConfigModule, ConfigService } from '@nestjs/config'; |
3 | | -import { TypeOrmModule } from '@nestjs/typeorm'; |
4 | | -import { AppController } from './app.controller'; |
5 | | -import { AppService } from './app.service'; |
6 | | -import { AssetCategoriesModule } from './asset-categories/asset-categories.module'; |
7 | | -import { SettingsModule } from './settings/settings.module'; |
8 | | -import { AssetCategory } from './asset-categories/asset-category.entity'; |
9 | | -import { DepartmentsModule } from './departments/departments.module'; |
10 | | -import { Department } from './departments/department.entity'; |
11 | | -import { UsersModule } from './users/users.module'; |
12 | | -import { User } from './users/entities/user.entity'; |
13 | | -import { SearchModule } from './search/search.module'; |
14 | | -import { AuthModule } from './auth/auth.module'; |
15 | | -import { RiskModule } from './risk/risk.module'; |
16 | | -import { ReportingModule } from './reporting/reporting.module'; |
17 | | -import { AssetTransfersModule } from './asset-transfers/asset-transfers.module'; |
18 | | -import { FileUpload } from './file-uploads/entities/file-upload.entity'; |
19 | | -import { Asset } from './assets/entities/assest.entity'; |
20 | | -import { Supplier } from './suppliers/entities/supplier.entity'; |
21 | | -import { QrBarcodeModule } from './qr-barcode/qr-barcode.module'; |
22 | | -import { VendorContractsModule } from './vendor-contracts/vendor-contracts.module'; |
| 1 | +import { Module } from "@nestjs/common"; |
| 2 | +import { ConfigModule, ConfigService } from "@nestjs/config"; |
| 3 | +import { TypeOrmModule } from "@nestjs/typeorm"; |
| 4 | +import { ScheduleModule } from "@nestjs/schedule"; |
| 5 | +import { AppController } from "./app.controller"; |
| 6 | +import { AppService } from "./app.service"; |
| 7 | +import { UsersModule } from "./users/users.module"; |
| 8 | +import { AuthModule } from "./auth/auth.module"; |
| 9 | +import { ApiKeysModule } from "./api-keys/api-keys.module"; |
| 10 | +import { OrganizationUnitsModule } from "./organization-units/organization-units.module"; |
| 11 | +import { ChangeLogModule } from "./change-log/change-log.module"; |
| 12 | +import { BarcodeModule } from "./barcode/barcode.module"; |
| 13 | +import { ComplianceModule } from "./compliance/compliance.module"; |
| 14 | +import { MobileDevicesModule } from "./mobile-devices/mobile-devices.module"; |
| 15 | +import { PolicyDocumentsModule } from "./policy-documents/policy-documents.module"; |
| 16 | +import { DeviceHealthModule } from "./device-health/device-health.module"; |
| 17 | +import { QRCodeModule } from "./QR-Code/qrcode.module"; |
| 18 | +import { NotificationsModule } from "./notifications/notifications.module"; |
| 19 | +import { StatusHistoryModule } from "./status-history/status-history.module"; |
| 20 | +import { DisposalRegistryModule } from "./disposal-registry/disposal-registry.module"; |
| 21 | +import { VendorDirectoryModule } from "./vendor-directory/vendor-directory.module"; |
| 22 | +import { WebhooksModule } from "./webhooks/webhooks.module"; |
23 | 23 |
|
24 | 24 | @Module({ |
25 | 25 | imports: [ |
@@ -54,10 +54,20 @@ import { VendorContractsModule } from './vendor-contracts/vendor-contracts.modul |
54 | 54 | UsersModule, |
55 | 55 | SearchModule, |
56 | 56 | AuthModule, |
57 | | - RiskModule, |
58 | | - ReportingModule, |
59 | | - QrBarcodeModule, |
60 | | - VendorContractsModule, |
| 57 | + ApiKeysModule, |
| 58 | + OrganizationUnitsModule, |
| 59 | + ChangeLogModule, |
| 60 | + BarcodeModule, |
| 61 | + ComplianceModule, |
| 62 | + MobileDevicesModule, |
| 63 | + PolicyDocumentsModule, |
| 64 | + DeviceHealthModule, |
| 65 | + QRCodeModule, |
| 66 | + NotificationsModule, |
| 67 | + StatusHistoryModule, |
| 68 | + DisposalRegistryModule, |
| 69 | + VendorDirectoryModule, |
| 70 | + WebhooksModule, |
61 | 71 | ], |
62 | 72 | controllers: [AppController], |
63 | 73 | providers: [AppService], |
|
0 commit comments