From b6c6165d8d9e85c5d764435c50ec367d7309a337 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Thu, 4 Apr 2019 11:20:33 +0000 Subject: [PATCH] [Trunk|Admin]: Add the new modules to svn(forgot it) git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-admin-portal/trunk@55187 d315682c-612b-4755-9ff5-7f18f6832af3 --- .../div-help-content-form.module.ts | 21 +++++++++++++++++++ .../page-help-content-form.module.ts | 21 +++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 src/app/pages/divhelpcontent/div-help-content-form.module.ts create mode 100644 src/app/pages/helpcontent/page-help-content-form.module.ts diff --git a/src/app/pages/divhelpcontent/div-help-content-form.module.ts b/src/app/pages/divhelpcontent/div-help-content-form.module.ts new file mode 100644 index 0000000..7cc9bd6 --- /dev/null +++ b/src/app/pages/divhelpcontent/div-help-content-form.module.ts @@ -0,0 +1,21 @@ +import { NgModule } from '@angular/core'; +import {CommonModule} from '@angular/common'; +import {FormsModule, ReactiveFormsModule} from '@angular/forms'; +import {FABModule} from '../../utils/fabModule.module'; +import {AlertModalModule} from '../../openaireLibrary/utils/modal/alertModal.module'; +import {SafeHtmlPipeModule} from '../../openaireLibrary/utils/pipes/safeHTMLPipe.module'; +import {DivContentFormComponent} from './div-help-content-form.component'; +import {CKEditorModule} from 'ng2-ckeditor'; + +@NgModule({ + imports: [ + CommonModule, FormsModule, + FABModule, SafeHtmlPipeModule, CKEditorModule, + AlertModalModule, ReactiveFormsModule + ], + declarations: [ + DivContentFormComponent + ], + exports: [DivContentFormComponent] +}) +export class DivHelpContentFormModule { } diff --git a/src/app/pages/helpcontent/page-help-content-form.module.ts b/src/app/pages/helpcontent/page-help-content-form.module.ts new file mode 100644 index 0000000..feeb967 --- /dev/null +++ b/src/app/pages/helpcontent/page-help-content-form.module.ts @@ -0,0 +1,21 @@ +import { NgModule } from '@angular/core'; +import {CommonModule} from '@angular/common'; +import {FormsModule, ReactiveFormsModule} from '@angular/forms'; +import {FABModule} from '../../utils/fabModule.module'; +import {AlertModalModule} from '../../openaireLibrary/utils/modal/alertModal.module'; +import {SafeHtmlPipeModule} from '../../openaireLibrary/utils/pipes/safeHTMLPipe.module'; +import {CKEditorModule} from 'ng2-ckeditor'; +import {PageContentFormComponent} from './page-help-content-form.component'; + +@NgModule({ + imports: [ + CommonModule, FormsModule, + FABModule, SafeHtmlPipeModule, CKEditorModule, + AlertModalModule, ReactiveFormsModule + ], + declarations: [ + PageContentFormComponent + ], + exports: [PageContentFormComponent] +}) +export class PageHelpContentFormModule { }