mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00

Conflicts: src/app/+collection-page/collection-page.module.ts src/app/+item-page/simple/related-entities/related-entities-search/related-entities-search.component.html src/app/+item-page/simple/related-items/related-items-component.ts src/app/+search-page/configuration-search-page.component.spec.ts src/app/+search-page/configuration-search-page.component.ts src/app/+search-page/filtered-search-page.component.spec.ts src/app/+search-page/filtered-search-page.component.ts src/app/+search-page/search-page.component.html src/app/+search-page/search-page.component.ts src/app/+search-page/search-page.module.ts src/app/+search-page/search.component.spec.ts src/app/app.reducer.ts src/app/core/data/data.service.spec.ts src/app/core/data/data.service.ts src/app/core/data/relationship.service.ts src/app/core/shared/search/search-configuration.service.ts src/app/core/shared/search/search.service.ts
38 lines
1.3 KiB
TypeScript
38 lines
1.3 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { SharedModule } from '../shared/shared.module';
|
|
|
|
import { CollectionPageComponent } from './collection-page.component';
|
|
import { CollectionPageRoutingModule } from './collection-page-routing.module';
|
|
import { CreateCollectionPageComponent } from './create-collection-page/create-collection-page.component';
|
|
import { CollectionFormComponent } from './collection-form/collection-form.component';
|
|
import { EditCollectionPageComponent } from './edit-collection-page/edit-collection-page.component';
|
|
import { DeleteCollectionPageComponent } from './delete-collection-page/delete-collection-page.component';
|
|
import { CollectionItemMapperComponent } from './collection-item-mapper/collection-item-mapper.component';
|
|
import { SearchService } from '../core/shared/search/search.service';
|
|
import { StatisticsModule } from '../statistics/statistics.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
SharedModule,
|
|
CollectionPageRoutingModule,
|
|
StatisticsModule.forRoot()
|
|
],
|
|
declarations: [
|
|
CollectionPageComponent,
|
|
CreateCollectionPageComponent,
|
|
EditCollectionPageComponent,
|
|
DeleteCollectionPageComponent,
|
|
CollectionFormComponent,
|
|
CollectionItemMapperComponent
|
|
],
|
|
providers: [
|
|
SearchService,
|
|
]
|
|
})
|
|
export class CollectionPageModule {
|
|
|
|
}
|