mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 18:14:17 +00:00
17 lines
480 B
TypeScript
17 lines
480 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
|
|
import { CollectionPageComponent } from './collection-page.component';
|
|
import { NormalizedCollection } from '../core/cache/models/normalized-collection.model';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{ path: ':id', component: CollectionPageComponent, pathMatch: 'full', data: { type: NormalizedCollection } }
|
|
])
|
|
]
|
|
})
|
|
export class CollectionPageRoutingModule {
|
|
|
|
}
|