diff --git a/libs/red-ui-http/src/lib/api.module.ts b/libs/red-ui-http/src/lib/api.module.ts index 83bfc5de8..6a8f2ba8b 100644 --- a/libs/red-ui-http/src/lib/api.module.ts +++ b/libs/red-ui-http/src/lib/api.module.ts @@ -2,7 +2,6 @@ import { ModuleWithProviders, NgModule, Optional, SkipSelf } from '@angular/core import { Configuration } from './configuration'; import { HttpClient } from '@angular/common/http'; import { GeneralSettingsControllerService } from './api/generalSettingsController.service'; -import { InfoControllerService } from './api/infoController.service'; import { LicenseReportControllerService } from './api/licenseReportController.service'; import { ManualRedactionControllerService } from './api/manualRedactionController.service'; import { ReanalysisControllerService } from './api/reanalysisController.service'; @@ -11,12 +10,10 @@ import { ReportTemplateControllerService } from './api/reportTemplateController. import { RulesControllerService } from './api/rulesController.service'; import { SmtpConfigurationControllerService } from './api/smtpConfigurationController.service'; import { UploadControllerService } from './api/uploadController.service'; -import { VersionsControllerService } from './api/versionsController.service'; import { ViewedPagesControllerService } from './api/viewedPagesController.service'; import { WatermarkControllerService } from './api/watermarkController.service'; import { SearchControllerService } from './api/searchController.service'; import { NotificationControllerService } from './api/notificationController.service'; -import { StatusReportControllerService } from './api/statusReportController.service'; @NgModule({ imports: [], @@ -24,7 +21,6 @@ import { StatusReportControllerService } from './api/statusReportController.serv exports: [], providers: [ GeneralSettingsControllerService, - InfoControllerService, LicenseReportControllerService, ManualRedactionControllerService, ReanalysisControllerService, @@ -33,12 +29,10 @@ import { StatusReportControllerService } from './api/statusReportController.serv RulesControllerService, SmtpConfigurationControllerService, UploadControllerService, - VersionsControllerService, ViewedPagesControllerService, WatermarkControllerService, SearchControllerService, NotificationControllerService, - StatusReportControllerService, ], }) export class ApiModule {