mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 19:13:08 +00:00
27 lines
717 B
TypeScript
27 lines
717 B
TypeScript
import { NgModule } from '@angular/core';
|
|
import { RouterModule } from '@angular/router';
|
|
import { CdkTreeModule } from '@angular/cdk/tree';
|
|
|
|
import { CommunityListService } from './community-list-service';
|
|
import { ThemedCommunityListPageComponent } from './themed-community-list-page.component';
|
|
|
|
/**
|
|
* RouterModule to help navigate to the page with the community list tree
|
|
*/
|
|
@NgModule({
|
|
imports: [
|
|
RouterModule.forChild([
|
|
{
|
|
path: '',
|
|
component: ThemedCommunityListPageComponent,
|
|
pathMatch: 'full',
|
|
data: { title: 'communityList.tabTitle' }
|
|
}
|
|
]),
|
|
CdkTreeModule,
|
|
],
|
|
providers: [CommunityListService]
|
|
})
|
|
export class CommunityListPageRoutingModule {
|
|
}
|