Skip to content
Snippets Groups Projects
Select Git revision
  • 9aee5053029a2c2cb5629f85d2ccb656664ee192
  • main default protected
  • release
  • anbindung_ed
  • 1.5.0
  • 1.4.0
  • 1.3.0
  • 1.2.0
  • 1.1.0
  • 1.0.0
10 results

DocumentManagerApplicationITCase.java

Blame
  • environment.module.ts 554 B
    import { CommonModule } from '@angular/common';
    import { NgModule } from '@angular/core';
    import { RestModule } from '@ngxp/rest';
    import { NgxsModule } from '@ngxs/store';
    import { EnvironmentState } from './environment-shared.state';
    import { ENVIRONMENT_CONFIG, getEnvironmentFactory } from './environment.service';
    
    @NgModule({
    	imports: [
    		CommonModule,
    		NgxsModule.forFeature([EnvironmentState]),
    		RestModule
    	],
    	providers: [
    		{
    			provide: ENVIRONMENT_CONFIG,
    			useFactory: getEnvironmentFactory
    		}
    	]
    })
    export class EnvironmentModule { }