2019-03-08 10:43:54 +01:00
|
|
|
import { CommonModule } from '@angular/common';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-03-08 10:43:54 +01:00
|
|
|
|
|
|
|
import { AmendmentCreateWizardComponent } from './components/amendment-create-wizard/amendment-create-wizard.component';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { SharedModule } from 'app/shared/shared.module';
|
2019-03-08 10:43:54 +01:00
|
|
|
import { ManageSubmittersComponent } from './components/manage-submitters/manage-submitters.component';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { MotionChangeRecommendationDialogComponent } from './components/motion-change-recommendation-dialog/motion-change-recommendation-dialog.component';
|
|
|
|
import { MotionCommentsComponent } from './components/motion-comments/motion-comments.component';
|
|
|
|
import { MotionDetailDiffComponent } from './components/motion-detail-diff/motion-detail-diff.component';
|
|
|
|
import { MotionDetailOriginalChangeRecommendationsComponent } from './components/motion-detail-original-change-recommendations/motion-detail-original-change-recommendations.component';
|
|
|
|
import { MotionDetailRoutingModule } from './motion-detail-routing.module';
|
|
|
|
import { MotionDetailComponent } from './components/motion-detail/motion-detail.component';
|
2019-03-08 10:43:54 +01:00
|
|
|
import { MotionPollDialogComponent } from './components/motion-poll/motion-poll-dialog.component';
|
|
|
|
import { MotionPollComponent } from './components/motion-poll/motion-poll.component';
|
2019-06-30 09:30:11 +02:00
|
|
|
import { MotionTitleChangeRecommendationDialogComponent } from './components/motion-title-change-recommendation-dialog/motion-title-change-recommendation-dialog.component';
|
2019-07-26 11:46:59 +02:00
|
|
|
import { PersonalNoteComponent } from './components/personal-note/personal-note.component';
|
2019-03-08 10:43:54 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, MotionDetailRoutingModule, SharedModule],
|
|
|
|
declarations: [
|
|
|
|
MotionDetailComponent,
|
|
|
|
AmendmentCreateWizardComponent,
|
|
|
|
MotionCommentsComponent,
|
|
|
|
PersonalNoteComponent,
|
|
|
|
ManageSubmittersComponent,
|
|
|
|
MotionPollComponent,
|
|
|
|
MotionPollDialogComponent,
|
|
|
|
MotionDetailDiffComponent,
|
|
|
|
MotionDetailOriginalChangeRecommendationsComponent,
|
2019-06-30 09:30:11 +02:00
|
|
|
MotionChangeRecommendationDialogComponent,
|
|
|
|
MotionTitleChangeRecommendationDialogComponent
|
2019-03-08 10:43:54 +01:00
|
|
|
],
|
|
|
|
entryComponents: [
|
|
|
|
MotionCommentsComponent,
|
|
|
|
PersonalNoteComponent,
|
|
|
|
ManageSubmittersComponent,
|
|
|
|
MotionPollDialogComponent,
|
2019-06-30 09:30:11 +02:00
|
|
|
MotionChangeRecommendationDialogComponent,
|
|
|
|
MotionTitleChangeRecommendationDialogComponent
|
2019-03-08 10:43:54 +01:00
|
|
|
]
|
|
|
|
})
|
|
|
|
export class MotionDetailModule {}
|