2019-12-23 17:36:53 +01:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {EditPageHelpContentRoutingModule} from "./edit-page-help-content-routing.module";
|
|
|
|
import {EditPageHelpContentModule} from "../openaireLibrary/dashboard/helpTexts/edit-page-help-content.module";
|
2020-10-30 14:59:37 +01:00
|
|
|
import {AdminDashboardGuard} from "../utils/adminDashboard.guard";
|
2019-12-23 17:36:53 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, RouterModule,
|
|
|
|
EditPageHelpContentRoutingModule, EditPageHelpContentModule
|
|
|
|
],
|
2020-10-30 14:59:37 +01:00
|
|
|
providers: [AdminDashboardGuard]
|
2019-12-23 17:36:53 +01:00
|
|
|
})
|
|
|
|
export class MonitorEditPageHelpContentModule { }
|