feat(analytics): enable analytic

This commit is contained in:
Dmitry Nehaychik 2017-09-20 13:55:34 +03:00
parent 3eee634861
commit e8cbd479c6
3 changed files with 37 additions and 2 deletions

View file

@ -4,6 +4,7 @@ import { NbAuthModule, NbDummyAuthProvider } from '@nebular/auth';
import { throwIfAlreadyLoaded } from './module-import-guard';
import { DataModule } from './data/data.module';
import { AnalyticsService } from './utils/analytics.service';
const NB_CORE_PROVIDERS = [
...DataModule.forRoot().providers,
@ -20,6 +21,7 @@ const NB_CORE_PROVIDERS = [
},
},
}).providers,
AnalyticsService,
];
@NgModule({