mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
60 lines
2.3 KiB
TypeScript
60 lines
2.3 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { CommunityPageComponent } from './community-page.component';
|
|
import { CommunityPageSubCollectionListComponent } from './sections/sub-com-col-section/sub-collection-list/community-page-sub-collection-list.component';
|
|
import { CommunityPageRoutingModule } from './community-page-routing.module';
|
|
import { CommunityPageSubCommunityListComponent } from './sections/sub-com-col-section/sub-community-list/community-page-sub-community-list.component';
|
|
import { CreateCommunityPageComponent } from './create-community-page/create-community-page.component';
|
|
import { DeleteCommunityPageComponent } from './delete-community-page/delete-community-page.component';
|
|
import { StatisticsModule } from '../statistics/statistics.module';
|
|
import { CommunityFormModule } from './community-form/community-form.module';
|
|
import { ThemedCommunityPageComponent } from './themed-community-page.component';
|
|
import { ComcolModule } from '../shared/comcol/comcol.module';
|
|
import {
|
|
ThemedCommunityPageSubCommunityListComponent
|
|
} from './sections/sub-com-col-section/sub-community-list/themed-community-page-sub-community-list.component';
|
|
import {
|
|
ThemedCollectionPageSubCollectionListComponent
|
|
} from './sections/sub-com-col-section/sub-collection-list/themed-community-page-sub-collection-list.component';
|
|
import { DsoPageModule } from '../shared/dso-page/dso-page.module';
|
|
import { SubComColSectionComponent } from './sections/sub-com-col-section/sub-com-col-section.component';
|
|
import { BrowseByPageModule } from '../browse-by/browse-by-page.module';
|
|
|
|
const DECLARATIONS = [
|
|
CommunityPageComponent,
|
|
ThemedCommunityPageComponent,
|
|
ThemedCommunityPageSubCommunityListComponent,
|
|
CommunityPageSubCollectionListComponent,
|
|
ThemedCollectionPageSubCollectionListComponent,
|
|
CommunityPageSubCommunityListComponent,
|
|
CreateCommunityPageComponent,
|
|
DeleteCommunityPageComponent,
|
|
SubComColSectionComponent,
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
CommunityPageRoutingModule,
|
|
StatisticsModule.forRoot(),
|
|
CommunityFormModule,
|
|
ComcolModule,
|
|
DsoPageModule,
|
|
BrowseByPageModule,
|
|
],
|
|
declarations: [
|
|
...DECLARATIONS
|
|
],
|
|
exports: [
|
|
...DECLARATIONS
|
|
]
|
|
})
|
|
|
|
export class CommunityPageModule {
|
|
|
|
}
|