Added mocks for all model types, added CollectionDataService

This commit is contained in:
Art Lowel
2017-02-14 14:40:57 +01:00
parent c3214595ef
commit c8fb98760d
30 changed files with 1129 additions and 162 deletions

View File

@@ -1,6 +1,8 @@
import { EffectsModule } from "@ngrx/effects";
import { HeaderEffects } from "./header/header.effects";
import { coreEffects } from "./core/core.effects";
export const effects = [
...coreEffects, //TODO should probably be imported in coreModule
EffectsModule.run(HeaderEffects)
];