mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
9 lines
286 B
TypeScript
9 lines
286 B
TypeScript
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)
|
|
];
|