Moved all objects to a single data store: the cache.

This commit is contained in:
Art Lowel
2017-02-15 15:57:38 +01:00
parent c8fb98760d
commit 2e5441d6f7
18 changed files with 240 additions and 55 deletions

View File

@@ -4,6 +4,7 @@ import { SharedModule } from "../shared/shared.module";
import { isNotEmpty } from "../shared/empty.util";
import { DSpaceRESTv2Service } from "./dspace-rest-v2/dspace-rest-v2.service";
import { CollectionDataService } from "./data-services/collection/collection-data.service";
import { CacheService } from "./data-services/cache/cache.service";
const IMPORTS = [
CommonModule,
@@ -18,7 +19,8 @@ const EXPORTS = [
const PROVIDERS = [
CollectionDataService,
DSpaceRESTv2Service
DSpaceRESTv2Service,
CacheService
];
@NgModule({