OpenSlides/client/src/app/site/agenda/agenda.module.ts

29 lines
1.2 KiB
TypeScript
Raw Normal View History

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';
import { AgendaRoutingModule } from './agenda-routing.module';
import { SharedModule } from '../../shared/shared.module';
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';
/**
* AppModule for the agenda and it's children.
*/
@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
]
})
export class AgendaModule {}