2018-07-23 16:42:17 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
2019-01-11 18:55:09 +01:00
|
|
|
import { AgendaImportListComponent } from './components/agenda-import-list/agenda-import-list.component';
|
|
|
|
import { AgendaListComponent } from './components/agenda-list/agenda-list.component';
|
|
|
|
import { ItemInfoDialogComponent } from './components/item-info-dialog/item-info-dialog.component';
|
2018-07-23 16:42:17 +02:00
|
|
|
import { AgendaRoutingModule } from './agenda-routing.module';
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
2018-10-23 14:20:29 +02:00
|
|
|
import { TopicDetailComponent } from './components/topic-detail/topic-detail.component';
|
2019-01-25 16:48:49 +01:00
|
|
|
import { AgendaSortComponent } from './components/agenda-sort/agenda-sort.component';
|
2019-02-21 16:15:21 +01:00
|
|
|
import { ListOfSpeakersComponent } from './components/list-of-speakers/list-of-speakers.component';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
2018-10-23 14:20:29 +02:00
|
|
|
/**
|
|
|
|
* AppModule for the agenda and it's children.
|
|
|
|
*/
|
2018-07-23 16:42:17 +02:00
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, AgendaRoutingModule, SharedModule],
|
2019-01-10 12:54:48 +01:00
|
|
|
entryComponents: [ItemInfoDialogComponent],
|
2019-01-25 16:48:49 +01:00
|
|
|
declarations: [
|
|
|
|
AgendaListComponent,
|
|
|
|
TopicDetailComponent,
|
|
|
|
ItemInfoDialogComponent,
|
|
|
|
AgendaImportListComponent,
|
2019-02-21 16:15:21 +01:00
|
|
|
AgendaSortComponent,
|
|
|
|
ListOfSpeakersComponent
|
2019-01-25 16:48:49 +01:00
|
|
|
]
|
2018-07-23 16:42:17 +02:00
|
|
|
})
|
|
|
|
export class AgendaModule {}
|