18 lines
778 B
TypeScript
18 lines
778 B
TypeScript
|
import { NgModule } from '@angular/core';
|
||
|
import {RouterModule} from '@angular/router';
|
||
|
import {CommonModule} from '@angular/common';
|
||
|
import {IsCommunity} from "../openaireLibrary/connect/communityGuard/isCommunity.guard";
|
||
|
import {ConnectAdminLoginGuard} from "../openaireLibrary/connect/communityGuard/connectAdminLoginGuard.guard";
|
||
|
import {NewPageHelpContentRoutingModule} from "./new-page-help-content-routing.module";
|
||
|
import {NewPageHelpContentModule} from "../openaireLibrary/dashboard/helpTexts/new-page-help-content.module";
|
||
|
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [
|
||
|
CommonModule, RouterModule,
|
||
|
NewPageHelpContentRoutingModule, NewPageHelpContentModule
|
||
|
],
|
||
|
providers: [IsCommunity, ConnectAdminLoginGuard],
|
||
|
})
|
||
|
export class MonitorNewPageHelpContentModule { }
|