[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

@@ -6,6 +6,7 @@ import { AdminNotificationsRoutingModule } from './admin-notifications-routing.m
import { AdminNotificationsBrokerTopicsPageComponent } from './admin-notifications-broker-topics-page/admin-notifications-broker-topics-page.component';
import { AdminNotificationsBrokerEventsPageComponent } from './admin-notifications-broker-events-page/admin-notifications-broker-events-page.component';
import { NotificationsModule } from '../../notifications/notifications.module';
import { AdminNotificationsBrokerSourcePageComponent } from './admin-notifications-broker-source-page-component/admin-notifications-broker-source-page.component';
@NgModule({
imports: [
@@ -17,7 +18,8 @@ import { NotificationsModule } from '../../notifications/notifications.module';
],
declarations: [
AdminNotificationsBrokerTopicsPageComponent,
AdminNotificationsBrokerEventsPageComponent
AdminNotificationsBrokerEventsPageComponent,
AdminNotificationsBrokerSourcePageComponent
],
entryComponents: []
})