Project

General

Profile

1
import { NgModule } from '@angular/core';
2
import {RouterModule} from '@angular/router';
3
import {CommonModule} from '@angular/common';
4
import {IsCommunity} from "../openaireLibrary/connect/communityGuard/isCommunity.guard";
5
import {ConnectAdminLoginGuard} from "../openaireLibrary/connect/communityGuard/connectAdminLoginGuard.guard";
6
import {NewPageHelpContentRoutingModule} from "./new-page-help-content-routing.module";
7
import {NewPageHelpContentModule} from "../openaireLibrary/dashboard/helpTexts/new-page-help-content.module";
8

    
9

    
10
@NgModule({
11
    imports: [
12
        CommonModule,  RouterModule,
13
         NewPageHelpContentRoutingModule, NewPageHelpContentModule
14
    ],
15
    providers: [IsCommunity, ConnectAdminLoginGuard],
16
})
17
export class MonitorNewPageHelpContentModule { }
(4-4/6)