2018-01-26 16:00:07 +01:00
|
|
|
import { NgModule} from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { FormsModule } from '@angular/forms';
|
|
|
|
import {OpenaireSearchDataprovidersComponent} from './searchDataproviders.component';
|
|
|
|
import{ SearchDataProvidersRoutingModule} from './searchDataProviders-routing.module';
|
2018-02-15 12:12:55 +01:00
|
|
|
import {FreeGuard} from '../../openaireLibrary/login/freeGuard.guard';
|
|
|
|
import {PreviousRouteRecorder} from '../../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
|
|
|
|
import {IsRouteEnabled} from '../../openaireLibrary/error/isRouteEnabled.guard'
|
|
|
|
import {SearchDataProvidersModule} from '../../openaireLibrary/searchPages/simple/searchDataProviders.module';
|
2018-01-26 16:00:07 +01:00
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule,
|
|
|
|
SearchDataProvidersModule, SearchDataProvidersRoutingModule
|
|
|
|
|
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
OpenaireSearchDataprovidersComponent
|
|
|
|
],
|
|
|
|
providers:[FreeGuard,PreviousRouteRecorder, IsRouteEnabled],
|
|
|
|
exports: [
|
|
|
|
OpenaireSearchDataprovidersComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class LibSearchDataProvidersModule { }
|