2018-07-23 16:42:17 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
|
|
|
import { MotionsRoutingModule } from './motions-routing.module';
|
|
|
|
import { SharedModule } from '../../shared/shared.module';
|
2018-09-04 14:55:07 +02:00
|
|
|
import { MotionListComponent } from './components/motion-list/motion-list.component';
|
|
|
|
import { MotionDetailComponent } from './components/motion-detail/motion-detail.component';
|
|
|
|
import { CategoryListComponent } from './components/category-list/category-list.component';
|
2018-10-01 15:36:16 +02:00
|
|
|
import { MotionCommentSectionListComponent } from './components/motion-comment-section-list/motion-comment-section-list.component';
|
2018-10-12 11:05:24 +02:00
|
|
|
import { StatuteParagraphListComponent } from './components/statute-paragraph-list/statute-paragraph-list.component';
|
2018-09-30 18:43:20 +02:00
|
|
|
import { MotionChangeRecommendationComponent } from './components/motion-change-recommendation/motion-change-recommendation.component';
|
|
|
|
import { MotionDetailOriginalChangeRecommendationsComponent } from './components/motion-detail-original-change-recommendations/motion-detail-original-change-recommendations.component';
|
|
|
|
import { MotionDetailDiffComponent } from './components/motion-detail-diff/motion-detail-diff.component';
|
2018-10-16 12:41:46 +02:00
|
|
|
import { MotionCommentsComponent } from './components/motion-comments/motion-comments.component';
|
|
|
|
import { PersonalNoteComponent } from './components/personal-note/personal-note.component';
|
2018-11-08 17:38:44 +01:00
|
|
|
import { CallListComponent } from './components/call-list/call-list.component';
|
2018-11-04 11:11:48 +01:00
|
|
|
import { AmendmentCreateWizardComponent } from './components/amendment-create-wizard/amendment-create-wizard.component';
|
2018-12-06 12:28:05 +01:00
|
|
|
import { MotionBlockListComponent } from './components/motion-block-list/motion-block-list.component';
|
|
|
|
import { MotionBlockDetailComponent } from './components/motion-block-detail/motion-block-detail.component';
|
2018-12-04 19:31:24 +01:00
|
|
|
import { MotionImportListComponent } from './components/motion-import-list/motion-import-list.component';
|
2018-12-06 14:58:34 +01:00
|
|
|
import { ManageSubmittersComponent } from './components/manage-submitters/manage-submitters.component';
|
2018-12-21 15:05:11 +01:00
|
|
|
import { MotionPollComponent } from './components/motion-poll/motion-poll.component';
|
|
|
|
import { MotionPollDialogComponent } from './components/motion-poll/motion-poll-dialog.component';
|
2019-01-25 17:03:05 +01:00
|
|
|
import { MotionExportDialogComponent } from './components/motion-export-dialog/motion-export-dialog.component';
|
2019-01-31 11:21:02 +01:00
|
|
|
import { StatuteImportListComponent } from './components/statute-paragraph-list/statute-import-list/statute-import-list.component';
|
2019-02-07 16:36:33 +01:00
|
|
|
import { WorkflowListComponent } from './components/workflow-list/workflow-list.component';
|
|
|
|
import { WorkflowDetailComponent } from './components/workflow-detail/workflow-detail.component';
|
2019-02-05 13:45:58 +01:00
|
|
|
import { CategorySortComponent } from './components/category-sort/category-sort.component';
|
2018-07-23 16:42:17 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [CommonModule, MotionsRoutingModule, SharedModule],
|
2018-10-12 11:05:24 +02:00
|
|
|
declarations: [
|
|
|
|
MotionListComponent,
|
|
|
|
MotionDetailComponent,
|
|
|
|
CategoryListComponent,
|
|
|
|
MotionCommentSectionListComponent,
|
2018-09-30 18:43:20 +02:00
|
|
|
StatuteParagraphListComponent,
|
|
|
|
MotionChangeRecommendationComponent,
|
|
|
|
MotionDetailOriginalChangeRecommendationsComponent,
|
2018-10-16 12:41:46 +02:00
|
|
|
MotionDetailDiffComponent,
|
|
|
|
MotionCommentsComponent,
|
2018-11-08 17:38:44 +01:00
|
|
|
PersonalNoteComponent,
|
2018-11-04 11:11:48 +01:00
|
|
|
CallListComponent,
|
2018-12-06 12:28:05 +01:00
|
|
|
AmendmentCreateWizardComponent,
|
|
|
|
MotionBlockListComponent,
|
2018-12-06 14:58:34 +01:00
|
|
|
MotionBlockDetailComponent,
|
2018-12-04 19:31:24 +01:00
|
|
|
MotionImportListComponent,
|
2018-12-21 15:05:11 +01:00
|
|
|
ManageSubmittersComponent,
|
|
|
|
MotionPollComponent,
|
2019-01-25 17:03:05 +01:00
|
|
|
MotionPollDialogComponent,
|
2019-01-31 11:21:02 +01:00
|
|
|
MotionExportDialogComponent,
|
2019-02-07 16:36:33 +01:00
|
|
|
StatuteImportListComponent,
|
|
|
|
WorkflowListComponent,
|
2019-02-05 13:45:58 +01:00
|
|
|
WorkflowDetailComponent,
|
|
|
|
CategorySortComponent
|
2018-09-30 18:43:20 +02:00
|
|
|
],
|
2018-10-16 12:41:46 +02:00
|
|
|
entryComponents: [
|
|
|
|
MotionChangeRecommendationComponent,
|
|
|
|
StatuteParagraphListComponent,
|
|
|
|
MotionCommentsComponent,
|
|
|
|
MotionCommentSectionListComponent,
|
2018-12-06 14:58:34 +01:00
|
|
|
PersonalNoteComponent,
|
2018-12-21 15:05:11 +01:00
|
|
|
ManageSubmittersComponent,
|
2019-01-25 17:03:05 +01:00
|
|
|
MotionPollDialogComponent,
|
|
|
|
MotionExportDialogComponent
|
2018-10-16 12:41:46 +02:00
|
|
|
]
|
2018-07-23 16:42:17 +02:00
|
|
|
})
|
|
|
|
export class MotionsModule {}
|