2019-12-23 17:36:53 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {NewDivHelpContentComponent} from "../openaireLibrary/dashboard/divhelpcontent/new-div-help-content.component";
|
2020-10-30 14:59:37 +01:00
|
|
|
import {AdminDashboardGuard} from "../utils/adminDashboard.guard";
|
2019-12-23 17:36:53 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
RouterModule.forChild([
|
2020-10-30 14:59:37 +01:00
|
|
|
{ path: '', canActivate: [AdminDashboardGuard], component: NewDivHelpContentComponent}
|
2019-12-23 17:36:53 +01:00
|
|
|
])
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class NewDivHelpContentRoutingModule { }
|