1
|
import { NgModule } from '@angular/core';
|
2
|
|
3
|
import { SharedModule } from '../../shared/shared.module';
|
4
|
import {OpenaireLinkingComponent} from './linkingGeneric.component';
|
5
|
import {LinkingRoutingModule} from './linking-routing.module';
|
6
|
import{ LinkingGenericModule} from '../../openaireLibrary/claims/linking/linkingGeneric.module';
|
7
|
import {LoginGuard} from '../../openaireLibrary/login/loginGuard.guard';
|
8
|
import {PreviousRouteRecorder} from '../../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
|
9
|
import {IsRouteEnabled} from '../../openaireLibrary/error/isRouteEnabled.guard';
|
10
|
import {ConnectSubscriberGuard} from '../../openaireLibrary/connect/communityGuard/connectSubscriber.guard';
|
11
|
import {CommunityService} from '../../openaireLibrary/connect/community/community.service';
|
12
|
|
13
|
@NgModule({
|
14
|
imports: [
|
15
|
SharedModule, LinkingRoutingModule, LinkingGenericModule
|
16
|
],
|
17
|
providers:[LoginGuard, PreviousRouteRecorder, IsRouteEnabled, ConnectSubscriberGuard, CommunityService],
|
18
|
declarations: [
|
19
|
OpenaireLinkingComponent
|
20
|
], exports:[
|
21
|
OpenaireLinkingComponent ]
|
22
|
})
|
23
|
export class LibLinkingGenericModule { }
|