[CST-5337] OAIRE-ELD correction service should support multiple providers.

This commit is contained in:
Pratik Rajkotiya
2022-03-03 12:11:50 +05:30
parent 4ca51387d1
commit 8ce3148dea
30 changed files with 1099 additions and 16 deletions

View File

@@ -17,6 +17,9 @@ import { NotificationsBrokerEventRestService } from '../core/notifications/broke
import { ProjectEntryImportModalComponent } from './broker/project-entry-import-modal/project-entry-import-modal.component';
import { TranslateModule } from '@ngx-translate/core';
import { SearchModule } from '../shared/search/search.module';
import { NotificationsBrokerSourceComponent } from './broker/source/notifications-broker-source.component';
import { NotificationsBrokerSourceService } from './broker/source/notifications-broker-source.service';
import { NotificationsBrokerSourceRestService } from '../core/notifications/broker/source/notifications-broker-source-rest.service';
const MODULES = [
CommonModule,
@@ -29,7 +32,8 @@ const MODULES = [
const COMPONENTS = [
NotificationsBrokerTopicsComponent,
NotificationsBrokerEventsComponent
NotificationsBrokerEventsComponent,
NotificationsBrokerSourceComponent
];
const DIRECTIVES = [ ];
@@ -41,7 +45,9 @@ const ENTRY_COMPONENTS = [
const PROVIDERS = [
NotificationsStateService,
NotificationsBrokerTopicsService,
NotificationsBrokerSourceService,
NotificationsBrokerTopicRestService,
NotificationsBrokerSourceRestService,
NotificationsBrokerEventRestService
];