From e9482c8ed5735846fdfb84983882418d6081ebe1 Mon Sep 17 00:00:00 2001 From: "sofia.baltzi" Date: Wed, 7 Mar 2018 13:18:30 +0000 Subject: [PATCH] Add community-edit-from.module git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-admin-portal/trunk@51079 d315682c-612b-4755-9ff5-7f18f6832af3 --- .../community-edit-form.module.ts | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 app/pages/community/community-edit-form/community-edit-form.module.ts diff --git a/app/pages/community/community-edit-form/community-edit-form.module.ts b/app/pages/community/community-edit-form/community-edit-form.module.ts new file mode 100644 index 0000000..8b6c0ad --- /dev/null +++ b/app/pages/community/community-edit-form/community-edit-form.module.ts @@ -0,0 +1,25 @@ +import {NgModule} from '@angular/core'; +import {CommonModule} from '@angular/common'; +import {FormsModule} from '@angular/forms'; +import {RouterModule} from '@angular/router'; + +import {CommunityEditFormComponent} from './community-edit-form.component'; + +import {CommunityService} from '../../../openaireLibrary/connect/community/community.service'; + +@NgModule({ + imports:[ + CommonModule, FormsModule, RouterModule + ], + declarations:[ + CommunityEditFormComponent + ], + providers:[ + CommunityService + ], + exports: [ + CommunityEditFormComponent + ] +}) + +export class CommunityEditFormModule { }