mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-08 02:24:11 +00:00
30 lines
1.1 KiB
TypeScript
30 lines
1.1 KiB
TypeScript
import { CommonModule } from '@angular/common';
|
|
import { NgModule } from '@angular/core';
|
|
import { CoreModule } from '../../core/core.module';
|
|
import { SharedModule } from '../../shared/shared.module';
|
|
import { AdminNotificationsRoutingModule } from './admin-notifications-routing.module';
|
|
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';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
CoreModule.forRoot(),
|
|
AdminNotificationsRoutingModule,
|
|
NotificationsModule
|
|
],
|
|
declarations: [
|
|
AdminNotificationsBrokerTopicsPageComponent,
|
|
AdminNotificationsBrokerEventsPageComponent
|
|
],
|
|
entryComponents: []
|
|
})
|
|
/**
|
|
* This module handles all components related to the notifications pages
|
|
*/
|
|
export class AdminNotificationsModule {
|
|
|
|
}
|