| .. | .. |
|---|
| 1 | +import { ErrorCheckerComponent } from './common/error.checker'; |
|---|
| 1 | 2 | import { NgModule } from '@angular/core'; |
|---|
| 2 | 3 | import { BrowserModule } from '@angular/platform-browser'; |
|---|
| 3 | 4 | import { CommonModule } from '@angular/common'; |
|---|
| .. | .. |
|---|
| 11 | 12 | import { ToastModule } from 'ng2-toastr/ng2-toastr'; |
|---|
| 12 | 13 | |
|---|
| 13 | 14 | import { AppHomeComponent } from './app.component'; |
|---|
| 15 | +import { I18nDirective } from './common/i18n'; |
|---|
| 14 | 16 | import { UserService } from './user.service'; |
|---|
| 15 | 17 | import { PacksService } from './resources/packs'; |
|---|
| 16 | 18 | import { LicenseTypesService } from './resources/license_types'; |
|---|
| .. | .. |
|---|
| 25 | 27 | import { appRoutes, appRoutingProviders } from './app.routes'; |
|---|
| 26 | 28 | import { requestOptionsProvider, requestBackendProvider } from './common/default.requests.options'; |
|---|
| 27 | 29 | import { LocaleServiceModule } from './common/i18n'; |
|---|
| 30 | +import { SeCurisSession } from './common/session'; |
|---|
| 28 | 31 | import { PackFormComponent } from "./forms/pack.form.component"; |
|---|
| 29 | 32 | |
|---|
| 30 | 33 | @NgModule({ |
|---|
| .. | .. |
|---|
| 48 | 51 | PackListComponent, |
|---|
| 49 | 52 | PackFormComponent, |
|---|
| 50 | 53 | LoginFormComponent, |
|---|
| 54 | + ErrorCheckerComponent, |
|---|
| 55 | + I18nDirective, |
|---|
| 51 | 56 | AppHomeComponent |
|---|
| 52 | 57 | ], |
|---|
| 53 | 58 | bootstrap: [ AppHomeComponent ], |
|---|
| 54 | 59 | entryComponents: [ PackFormComponent ], |
|---|
| 55 | 60 | providers: [ |
|---|
| 61 | + SeCurisSession, |
|---|
| 56 | 62 | UserService, |
|---|
| 57 | 63 | PacksService, |
|---|
| 58 | 64 | LicensesService, |
|---|