"common/git@code.vt.edu:hsinyu/edx-platform-release.git" did not exist on "00b6beff505a035bd0db3a02a0246b75ce3d4867"
Newer
Older
import { Injectable, OpaqueToken } from "@angular/core";
import { Store } from "@ngrx/store";
import { DataService } from "./data.service";
import { Collection } from "../shared/collection.model";
import { ObjectCacheService } from "../cache/object-cache.service";
import { RequestCacheState } from "../cache/request-cache.reducer";
@Injectable()
export class CollectionDataService extends DataService<Collection> {
name = new OpaqueToken('CollectionDataService');
constructor(
store: Store<RequestCacheState>,
cache: ObjectCacheService