2022-04-09 15:18:30 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
2019-12-20 12:38:13 +01:00
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
|
|
|
import {AlertModalModule} from '../../utils/modal/alertModal.module';
|
|
|
|
import {SafeHtmlPipeModule} from '../../utils/pipes/safeHTMLPipe.module';
|
2020-08-17 14:02:25 +02:00
|
|
|
import {CKEditorModule} from 'ng2-ckeditor';
|
2019-12-20 12:38:13 +01:00
|
|
|
import {PageContentFormComponent} from './page-help-content-form.component';
|
2021-02-25 16:55:56 +01:00
|
|
|
import {PageHelpContentFormRoutingModule} from './page-help-content-form-routing.module';
|
|
|
|
import {AdminToolServiceModule} from '../../services/adminToolService.module';
|
|
|
|
import {InputModule} from '../../sharedComponents/input/input.module';
|
2022-04-09 15:18:30 +02:00
|
|
|
import {MatSlideToggleModule} from '@angular/material/slide-toggle';
|
2021-02-25 16:55:56 +01:00
|
|
|
import {IconsModule} from '../../utils/icons/icons.module';
|
|
|
|
import {PageContentModule} from '../sharedComponents/page-content/page-content.module';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {LoadingModule} from '../../utils/loading/loading.module';
|
2019-12-20 12:38:13 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2021-02-25 16:55:56 +01:00
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule, RouterModule,
|
|
|
|
SafeHtmlPipeModule, CKEditorModule,
|
|
|
|
AlertModalModule, ReactiveFormsModule, PageHelpContentFormRoutingModule, AdminToolServiceModule, InputModule, MatSlideToggleModule, IconsModule, PageContentModule, LoadingModule
|
|
|
|
],
|
2019-12-20 12:38:13 +01:00
|
|
|
declarations: [
|
|
|
|
PageContentFormComponent
|
|
|
|
],
|
|
|
|
exports: [PageContentFormComponent]
|
|
|
|
})
|
2022-04-09 15:18:30 +02:00
|
|
|
export class PageHelpContentFormModule {}
|