2019-03-07 16:43:10 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {RouterModule} from '@angular/router';
|
2018-03-07 14:18:30 +01:00
|
|
|
|
2019-03-07 16:43:10 +01:00
|
|
|
import {SubjectsEditFormComponent} from './subjects-edit-form.component';
|
2018-03-07 14:18:30 +01:00
|
|
|
|
2019-03-07 16:43:10 +01:00
|
|
|
import {SubjectsService} from '../subjects.service';
|
|
|
|
import {SubjectsEditFormRoutingModule} from './subjects-edit-form-routing.module';
|
2021-05-19 13:40:29 +02:00
|
|
|
import {PageContentModule} from '../../../openaireLibrary/dashboard/sharedComponents/page-content/page-content.module';
|
|
|
|
import {IconsModule} from '../../../openaireLibrary/utils/icons/icons.module';
|
|
|
|
import {AlertModalModule} from '../../../openaireLibrary/utils/modal/alertModal.module';
|
|
|
|
import {NoLoadPaging} from '../../../openaireLibrary/searchPages/searchUtils/no-load-paging.module';
|
|
|
|
import {LoadingModule} from '../../../openaireLibrary/utils/loading/loading.module';
|
|
|
|
import {InputModule} from '../../../openaireLibrary/sharedComponents/input/input.module';
|
|
|
|
import {SearchInputModule} from '../../../openaireLibrary/sharedComponents/search-input/search-input.module';
|
2022-07-04 14:13:33 +02:00
|
|
|
import {FullScreenModalModule} from 'src/app/openaireLibrary/utils/modal/full-screen-modal/full-screen-modal.module';
|
2022-07-04 20:45:20 +02:00
|
|
|
import {PagingModule} from "../../../openaireLibrary/utils/paging.module";
|
2018-03-07 14:18:30 +01:00
|
|
|
|
|
|
|
@NgModule({
|
2019-03-07 16:43:10 +01:00
|
|
|
imports: [
|
2023-03-01 15:25:54 +01:00
|
|
|
SubjectsEditFormRoutingModule, CommonModule, FormsModule, RouterModule,
|
|
|
|
PageContentModule, IconsModule, AlertModalModule, NoLoadPaging, LoadingModule, InputModule,
|
|
|
|
SearchInputModule, FullScreenModalModule, PagingModule
|
2018-03-07 14:18:30 +01:00
|
|
|
],
|
2019-03-07 16:43:10 +01:00
|
|
|
declarations: [
|
2018-10-30 16:31:16 +01:00
|
|
|
SubjectsEditFormComponent
|
2019-03-07 16:43:10 +01:00
|
|
|
],
|
|
|
|
providers: [
|
2021-05-19 13:40:29 +02:00
|
|
|
SubjectsService
|
2019-03-07 16:43:10 +01:00
|
|
|
],
|
2018-03-07 14:18:30 +01:00
|
|
|
exports: [
|
2018-10-30 16:31:16 +01:00
|
|
|
SubjectsEditFormComponent
|
2018-03-07 14:18:30 +01:00
|
|
|
]
|
|
|
|
})
|
2022-07-04 20:45:20 +02:00
|
|
|
export class SubjectsEditFormModule {}
|