2019-03-08 14:10:29 +01:00
|
|
|
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 {StatsComponent} from './stats.component';
|
|
|
|
import {StatsRoutingModule} from './stats-routing.module';
|
2019-06-18 17:06:13 +02:00
|
|
|
import {MatSlideToggleModule} from '@angular/material';
|
2019-03-08 14:10:29 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2019-06-18 17:06:13 +02:00
|
|
|
CommonModule, StatsRoutingModule, RouterModule, MatSlideToggleModule
|
2019-03-08 14:10:29 +01:00
|
|
|
],
|
|
|
|
declarations: [StatsComponent],
|
|
|
|
providers: [IsCommunity, ConnectAdminLoginGuard],
|
|
|
|
exports: [StatsComponent]
|
|
|
|
})
|
|
|
|
export class StatsModule { }
|