import { NgModule } from '@angular/core'; import { RouterModule } from '@angular/router'; import{OpenaireSearchEntityRegistriesComponent} from './entityRegistries.component'; import {FreeGuard,PreviousRouteRecorder, IsRouteEnabled} from 'ng-openaire-library'; @NgModule({ imports: [ RouterModule.forChild([ { path: '', component: OpenaireSearchEntityRegistriesComponent, canActivate: [FreeGuard, IsRouteEnabled], data: { redirect: '/error' }, canDeactivate: [PreviousRouteRecorder] } ]) ] }) export class EntityRegistriesRoutingModule { }