forked from hazza/dspace-angular

# Conflicts: # src/app/+item-page/edit-item-page/item-status/item-status.component.spec.ts # src/app/core/cache/builders/remote-data-build.service.ts # src/app/core/core.effects.ts # src/app/core/core.reducers.ts # src/app/core/data/comcol-data.service.spec.ts # src/app/core/data/data.service.spec.ts # src/app/core/data/data.service.ts # src/app/core/shared/dspace-object.model.ts # src/app/shared/shared.module.ts # src/styles/_custom_variables.scss
19 lines
674 B
TypeScript
19 lines
674 B
TypeScript
|
|
import { ObjectCacheEffects } from './cache/object-cache.effects';
|
|
import { UUIDIndexEffects } from './index/index.effects';
|
|
import { RequestEffects } from './data/request.effects';
|
|
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';
|
|
|
|
export const coreEffects = [
|
|
RequestEffects,
|
|
ObjectCacheEffects,
|
|
UUIDIndexEffects,
|
|
AuthEffects,
|
|
JsonPatchOperationsEffects,
|
|
ServerSyncBufferEffects,
|
|
ObjectUpdatesEffects
|
|
];
|