2019-10-17 15:49:05 +02:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
|
|
|
|
import { OpenaireSearchDataprovidersToDepositComponent } from './searchDataprovidersToDeposit.component';
|
|
|
|
|
|
|
|
import {SearchDataprovidersToDepositRoutingModule} from './searchDataprovidersToDeposit-routing.module';
|
|
|
|
import {SearchDataprovidersToDepositModule} from '../openaireLibrary/deposit/searchDataprovidersToDeposit.module';
|
|
|
|
import {PreviousRouteRecorder} from '../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
|
|
|
|
import {IsRouteEnabled} from '../openaireLibrary/error/isRouteEnabled.guard';
|
|
|
|
import {ZenodoCommunitiesServiceModule} from '../openaireLibrary/connect/zenodoCommunities/zenodo-communitiesService.module';
|
|
|
|
import {SearchZenodoCommunitiesServiceModule} from '../openaireLibrary/connect/zenodoCommunities/searchZenodoCommunitiesService.module';
|
|
|
|
|
|
|
|
import {CommunityService} from '../openaireLibrary/connect/community/community.service';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
|
|
|
SearchDataprovidersToDepositModule,
|
|
|
|
SearchDataprovidersToDepositRoutingModule,
|
|
|
|
ZenodoCommunitiesServiceModule, SearchZenodoCommunitiesServiceModule
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
OpenaireSearchDataprovidersToDepositComponent
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
OpenaireSearchDataprovidersToDepositComponent,
|
|
|
|
],
|
2020-11-11 15:44:21 +01:00
|
|
|
providers: [PreviousRouteRecorder, IsRouteEnabled, CommunityService]
|
2019-10-17 15:49:05 +02:00
|
|
|
})
|
|
|
|
export class LibSearchDataprovidersToDepositModule { }
|