[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
This commit is contained in:
parent
5ff8a5844b
commit
b6c6165d8d
|
@ -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 { }
|
|
@ -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 { }
|
Loading…
Reference in New Issue