1
0

added indexing for different UUIDs

This commit is contained in:
lotte
2018-10-19 16:07:07 +02:00
parent ec5f977dd2
commit 5c12e2d995
12 changed files with 101 additions and 43 deletions

View File

@@ -24,9 +24,12 @@ export class AuthRequestService {
protected fetchRequest(request: RestRequest): Observable<any> {
return this.requestService.getByHref(request.href).pipe(
tap((t) => console.log(t)),
getResponseFromEntry(),
// TODO to review when https://github.com/DSpace/dspace-angular/issues/217 will be fixed
// tap(() => this.responseCache.remove(request.href)),
tap((t) => console.log(t)),
mergeMap((response) => {
if (response.isSuccessful && isNotEmpty(response)) {
return observableOf((response as AuthStatusResponse).response);