2019-10-24 09:44:29 +02:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
import {FormsModule} from '@angular/forms';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
|
|
|
|
import {FreeGuard} from '../openaireLibrary/login/freeGuard.guard';
|
|
|
|
import {PreviousRouteRecorder} from '../openaireLibrary/utils/piwik/previousRouteRecorder.guard';
|
|
|
|
|
|
|
|
import {PiwikService} from '../openaireLibrary/utils/piwik/piwik.service';
|
|
|
|
import {ErrorMessagesModule} from '../openaireLibrary/utils/errorMessages.module';
|
|
|
|
import {HelperModule} from "../openaireLibrary/utils/helper/helper.module";
|
|
|
|
import {Schema2jsonldModule} from "../openaireLibrary/sharedComponents/schema2jsonld/schema2jsonld.module";
|
|
|
|
import {SEOServiceModule} from "../openaireLibrary/sharedComponents/SEO/SEOService.module";
|
|
|
|
import {MonitorRoutingModule} from "./monitor-routing.module";
|
|
|
|
import {MonitorComponent} from "./monitor.component";
|
|
|
|
import {StatisticsService} from "../utils/services/statistics.service";
|
2019-11-01 19:30:11 +01:00
|
|
|
import {SideBarModule} from "../library/sharedComponents/sidebar/sideBar.module";
|
2019-10-29 12:33:42 +01:00
|
|
|
import {ModalModule} from "../openaireLibrary/utils/modal/modal.module";
|
2019-10-24 09:44:29 +02:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
|
|
|
CommonModule, FormsModule, RouterModule, ErrorMessagesModule,
|
2019-10-29 12:33:42 +01:00
|
|
|
HelperModule, Schema2jsonldModule, SEOServiceModule, MonitorRoutingModule, SideBarModule, ModalModule
|
2019-10-24 09:44:29 +02:00
|
|
|
],
|
|
|
|
declarations: [
|
|
|
|
MonitorComponent
|
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
FreeGuard, PreviousRouteRecorder,
|
2019-11-01 19:30:11 +01:00
|
|
|
PiwikService,
|
2019-10-24 09:44:29 +02:00
|
|
|
StatisticsService
|
|
|
|
],
|
|
|
|
exports: [
|
|
|
|
MonitorComponent
|
|
|
|
]
|
|
|
|
})
|
|
|
|
export class MonitorModule {
|
|
|
|
}
|