Project

General

Profile

1
import {NgModule}     from '@angular/core';
2
import {RouterModule} from '@angular/router';
3

    
4
import {FreeGuard}              from '../../openaireLibrary/login/freeGuard.guard';
5
import {PreviousRouteRecorder}  from '../../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
6
import {LearnInDepthComponent} from "./learn-in-depth.component";
7
import {IsRouteEnabled} from "../../openaireLibrary/error/isRouteEnabled.guard";
8

    
9
@NgModule({
10
  imports: [
11
    RouterModule.forChild([
12
      { path: '', component: LearnInDepthComponent, canActivate: [FreeGuard, IsRouteEnabled], canDeactivate: [PreviousRouteRecorder] }
13

    
14
    ])
15
  ]
16
})
17
export class LearnInDepthRoutingModule { }
(1-1/3)