Pagination for collections & Process feedback

This commit is contained in:
Marie Verdonck
2019-10-16 15:00:46 +02:00
parent adfe881a81
commit 84326ef564
20 changed files with 1420 additions and 457 deletions

View File

@@ -1,17 +1,23 @@
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
import {CdkTreeModule} from '@angular/cdk/tree';
import { CdkTreeModule } from '@angular/cdk/tree';
import {CommunityListPageComponent} from './community-list-page.component';
import {CommunityListAdapter} from './community-list-adapter';
import { CommunityListPageComponent } from './community-list-page.component';
import { CommunityListService } from './community-list-service';
@NgModule({
imports: [
RouterModule.forChild([
{ path: '', component: CommunityListPageComponent, pathMatch: 'full', data: { title: 'communityList.tabTitle' } }
]),
CdkTreeModule,
],
providers: [CommunityListAdapter]
imports: [
RouterModule.forChild([
{
path: '',
component: CommunityListPageComponent,
pathMatch: 'full',
data: { title: 'communityList.tabTitle' }
}
]),
CdkTreeModule,
],
providers: [CommunityListService]
})
export class CommunityListPageRoutingModule { }
export class CommunityListPageRoutingModule {
}