funky-framadate-front/src/app/features/consultation/consultation.module.ts

45 lines
1.9 KiB
TypeScript
Raw Normal View History

2020-05-12 19:16:23 +02:00
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { TranslateModule } from '@ngx-translate/core';
import { SharedModule } from '../../shared/shared.module';
import { ConsultationRoutingModule } from './consultation-routing.module';
import { ConsultationComponent } from './consultation.component';
import { PollResultsCompactComponent } from './poll-results-compact/poll-results-compact.component';
import { PollResultsDetailedComponent } from './poll-results-detailed/poll-results-detailed.component';
2021-04-28 14:07:33 +02:00
import { ChoiceButtonComponent } from '../../shared/components/choice-item/choice-button.component';
2021-06-10 12:20:28 +02:00
import { PasswordPromptComponent } from './password/password-prompt/password-prompt.component';
import { ConsultationLandingComponent } from './consultation-landing/consultation-landing.component';
import { ConsultationUserComponent } from './consultation-user/consultation-user.component';
import { SuccessComponent } from './success/success.component';
import { AdministrationModule } from '../administration/administration.module';
2022-02-07 11:42:25 +01:00
import { EditComponent } from './edit/edit.component';
2022-02-07 12:09:59 +01:00
import { ResultsRoundedComponent } from './results-rounded/results-rounded.component';
import { PollResultsDinumComponent } from './poll-results-dinum/poll-results-dinum.component';
2022-02-10 12:16:11 +01:00
import { ChoiceTableComponent } from './choice-table/choice-table.component';
2020-05-12 19:16:23 +02:00
@NgModule({
2021-04-28 14:07:33 +02:00
declarations: [
ConsultationComponent,
PollResultsCompactComponent,
PollResultsDetailedComponent,
ChoiceButtonComponent,
2021-06-10 12:20:28 +02:00
PasswordPromptComponent,
ConsultationLandingComponent,
ConsultationUserComponent,
SuccessComponent,
2022-02-07 11:42:25 +01:00
EditComponent,
2022-02-07 12:09:59 +01:00
ResultsRoundedComponent,
PollResultsDinumComponent,
2022-02-10 12:16:11 +01:00
ChoiceTableComponent,
2021-04-28 14:07:33 +02:00
],
imports: [
CommonModule,
ConsultationRoutingModule,
SharedModule,
TranslateModule.forChild({ extend: true }),
AdministrationModule,
],
2020-05-12 19:16:23 +02:00
})
export class ConsultationModule {}