added different themes, issue with ngrx

This commit is contained in:
lotte
2019-03-25 10:41:56 +01:00
parent 8865d6e049
commit 5fa8fd2688
19 changed files with 190 additions and 27 deletions

View File

@@ -1,4 +1,3 @@
import { ObjectCacheEffects } from './cache/object-cache.effects';
import { UUIDIndexEffects } from './index/index.effects';
import { RequestEffects } from './data/request.effects';
@@ -6,6 +5,7 @@ import { AuthEffects } from './auth/auth.effects';
import { JsonPatchOperationsEffects } from './json-patch/json-patch-operations.effects';
import { ServerSyncBufferEffects } from './cache/server-sync-buffer.effects';
import { ObjectUpdatesEffects } from './data/object-updates/object-updates.effects';
import { ThemeEffects } from './theme/theme.effects';
export const coreEffects = [
RequestEffects,
@@ -14,5 +14,6 @@ export const coreEffects = [
AuthEffects,
JsonPatchOperationsEffects,
ServerSyncBufferEffects,
ObjectUpdatesEffects
ObjectUpdatesEffects,
ThemeEffects
];